2022-06-19 00:25:21 +00:00
|
|
|
/* 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";
|
2018-04-29 07:47:39 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
const program = new Command("upgrade");
|
2018-04-29 07:47:39 +00:00
|
|
|
program
|
2022-06-19 00:25:21 +00:00
|
|
|
.arguments("[packages...]")
|
2020-03-15 11:53:09 +00:00
|
|
|
.description("Upgrade installed themes and packages to their latest versions")
|
2018-04-29 07:47:39 +00:00
|
|
|
.on("--help", Utils.extraHelp)
|
2020-03-21 20:55:36 +00:00
|
|
|
.action(function (packages) {
|
2018-04-29 07:47:39 +00:00
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
|
|
|
|
|
|
|
// Get paths to the location of packages directory
|
2022-05-01 19:12:39 +00:00
|
|
|
const packagesConfig = path.join(Config.getPackagesPath(), "package.json");
|
2019-12-31 23:11:04 +00:00
|
|
|
const packagesList = JSON.parse(fs.readFileSync(packagesConfig, "utf-8")).dependencies;
|
2019-12-13 15:45:10 +00:00
|
|
|
const argsList = ["upgrade", "--latest"];
|
2018-04-29 07:47:39 +00:00
|
|
|
|
|
|
|
let count = 0;
|
|
|
|
|
2019-12-24 09:31:17 +00:00
|
|
|
if (!Object.entries(packagesList).length) {
|
2018-04-29 07:47:39 +00:00
|
|
|
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)}`);
|
|
|
|
|
2019-06-25 08:51:47 +00:00
|
|
|
if (Object.prototype.hasOwnProperty.call(packagesList, p)) {
|
2019-01-16 10:51:52 +00:00
|
|
|
argsList.push(p);
|
2018-04-29 07:47:39 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
const command = argsList.shift();
|
|
|
|
const params = argsList;
|
|
|
|
|
|
|
|
if (!command) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Utils.executeYarnCommand(command, ...params)
|
2019-07-17 09:33:59 +00:00
|
|
|
.then(() => {
|
|
|
|
log.info("Package(s) have been successfully upgraded.");
|
|
|
|
})
|
|
|
|
.catch((code) => {
|
2022-06-19 00:25:21 +00:00
|
|
|
log.error(`Failed to upgrade package(s). Exit code ${String(code)}`);
|
2019-12-24 09:31:17 +00:00
|
|
|
process.exit(1);
|
2019-07-17 09:33:59 +00:00
|
|
|
});
|
2018-04-29 07:47:39 +00:00
|
|
|
});
|
2022-06-19 00:25:21 +00:00
|
|
|
|
|
|
|
export default program;
|