@team-semicolon/semo-cli 3.0.19 → 3.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -536,7 +536,7 @@ async function showVersionInfo() {
|
|
|
536
536
|
if (cli.needsUpdate) {
|
|
537
537
|
console.log();
|
|
538
538
|
console.log(chalk_1.default.yellow.bold(" ⚠️ CLI 업데이트 가능"));
|
|
539
|
-
console.log(chalk_1.default.cyan(` npm
|
|
539
|
+
console.log(chalk_1.default.cyan(` npm install -g ${PACKAGE_NAME}@latest`));
|
|
540
540
|
}
|
|
541
541
|
else {
|
|
542
542
|
console.log();
|
|
@@ -572,7 +572,7 @@ async function showVersionInfo() {
|
|
|
572
572
|
console.log();
|
|
573
573
|
if (cliNeedsUpdate) {
|
|
574
574
|
console.log(chalk_1.default.yellow.bold(" ⚠️ CLI 업데이트 가능"));
|
|
575
|
-
console.log(chalk_1.default.cyan(` npm
|
|
575
|
+
console.log(chalk_1.default.cyan(` npm install -g ${PACKAGE_NAME}@latest`));
|
|
576
576
|
}
|
|
577
577
|
if (otherNeedsUpdateCount > 0) {
|
|
578
578
|
if (cliNeedsUpdate)
|