UNPKG

1.61 kBJavaScriptView Raw
1"use strict";
2var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4 return new (P || (P = Promise))(function (resolve, reject) {
5 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8 step((generator = generator.apply(thisArg, _arguments || [])).next());
9 });
10};
11Object.defineProperty(exports, "__esModule", { value: true });
12exports.UpdateCommand = void 0;
13const abstract_command_1 = require("./abstract.command");
14class UpdateCommand extends abstract_command_1.AbstractCommand {
15 load(program) {
16 program
17 .command('update')
18 .alias('u')
19 .description('Update Nest dependencies.')
20 .option('-f, --force', 'Remove and re-install dependencies (instead of update).')
21 .option('-t, --tag <tag>', 'Upgrade to tagged packages (latest | beta | rc | next tag).')
22 .action((command) => __awaiter(this, void 0, void 0, function* () {
23 const options = [];
24 options.push({ name: 'force', value: !!command.force });
25 options.push({ name: 'tag', value: command.tag });
26 yield this.action.handle([], options);
27 }));
28 }
29}
30exports.UpdateCommand = UpdateCommand;