Merge pull request #2161 from realies/patch-4
Add install command support for package version
This commit is contained in:
commit
6fdd6d4f8e
@ -23,16 +23,21 @@ program
|
|||||||
|
|
||||||
log.info("Retrieving information about the package...");
|
log.info("Retrieving information about the package...");
|
||||||
|
|
||||||
|
const split = packageName.split("@");
|
||||||
|
packageName = split[0];
|
||||||
|
const packageVersion = split[1] || "latest";
|
||||||
|
|
||||||
packageJson(packageName, {
|
packageJson(packageName, {
|
||||||
fullMetadata: true,
|
fullMetadata: true,
|
||||||
|
version: packageVersion,
|
||||||
}).then((json) => {
|
}).then((json) => {
|
||||||
if (!("thelounge" in json)) {
|
if (!("thelounge" in json)) {
|
||||||
log.error(`${colors.red(packageName)} does not have The Lounge metadata.`);
|
log.error(`${colors.red(json.name + " v" + json.version)} does not have The Lounge metadata.`);
|
||||||
|
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
log.info(`Installing ${colors.green(packageName)}...`);
|
log.info(`Installing ${colors.green(json.name + " v" + json.version)}...`);
|
||||||
|
|
||||||
const packagesPath = Helper.getPackagesPath();
|
const packagesPath = Helper.getPackagesPath();
|
||||||
const packagesConfig = path.join(packagesPath, "package.json");
|
const packagesConfig = path.join(packagesPath, "package.json");
|
||||||
@ -71,7 +76,7 @@ program
|
|||||||
"--non-interactive",
|
"--non-interactive",
|
||||||
"--cwd",
|
"--cwd",
|
||||||
packagesPath,
|
packagesPath,
|
||||||
`${packageName}@${json.version}`,
|
`${json.name}@${json.version}`,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -92,11 +97,11 @@ program
|
|||||||
|
|
||||||
add.on("close", (code) => {
|
add.on("close", (code) => {
|
||||||
if (!success || code !== 0) {
|
if (!success || code !== 0) {
|
||||||
log.error(`Failed to install ${colors.green(packageName)}. Exit code: ${code}`);
|
log.error(`Failed to install ${colors.green(json.name + " v" + json.version)}. Exit code: ${code}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
log.info(`${colors.green(packageName + " v" + json.version)} has been successfully installed.`);
|
log.info(`${colors.green(json.name + " v" + json.version)} has been successfully installed.`);
|
||||||
});
|
});
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
log.error(`${e}`);
|
log.error(`${e}`);
|
||||||
|
Loading…
Reference in New Issue
Block a user