dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
import log from "../log";
|
|
import colors from "chalk";
|
|
import {Command} from "commander";
|
|
import Config from "../config";
|
|
import Utils from "./utils";
|
|
|
|
const program = new Command("upgrade");
|
|
program
|
|
.arguments("[packages...]")
|
|
.description("Upgrade installed themes and packages to their latest versions")
|
|
.on("--help", Utils.extraHelp)
|
|
.action(function (packages) {
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
// Get paths to the location of packages directory
|
|
const packagesConfig = path.join(Config.getPackagesPath(), "package.json");
|
|
const packagesList = JSON.parse(fs.readFileSync(packagesConfig, "utf-8")).dependencies;
|
|
const argsList = ["upgrade", "--latest"];
|
|
|
|
let count = 0;
|
|
|
|
if (!Object.entries(packagesList).length) {
|
|
log.warn("There are no packages installed.");
|
|
return;
|
|
}
|
|
|
|
// If a package names are supplied, check they exist
|
|
if (packages.length) {
|
|
log.info("Upgrading the following packages:");
|
|
packages.forEach((p) => {
|
|
log.info(`- ${colors.green(p)}`);
|
|
|
|
if (Object.prototype.hasOwnProperty.call(packagesList, p)) {
|
|
argsList.push(p);
|
|
count++;
|
|
} else {
|
|
log.error(`${colors.green(p)} is not installed.`);
|
|
}
|
|
});
|
|
} else {
|
|
log.info("Upgrading all packages...");
|
|
}
|
|
|
|
if (count === 0 && packages.length) {
|
|
log.warn("There are not any packages to upgrade.");
|
|
return;
|
|
}
|
|
|
|
const command = argsList.shift();
|
|
const params = argsList;
|
|
|
|
if (!command) {
|
|
return;
|
|
}
|
|
|
|
return Utils.executeYarnCommand(command, ...params)
|
|
.then(() => {
|
|
log.info("Package(s) have been successfully upgraded.");
|
|
})
|
|
.catch((code) => {
|
|
log.error(`Failed to upgrade package(s). Exit code ${String(code)}`);
|
|
process.exit(1);
|
|
});
|
|
});
|
|
|
|
export default program;
|