@ijuantm/simpl-addon 2.4.6 → 2.4.8
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/install.js +6 -8
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -404,13 +404,11 @@ const main = async () => {
|
|
|
404
404
|
process.exit(1);
|
|
405
405
|
}
|
|
406
406
|
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
console.log();
|
|
413
|
-
}
|
|
407
|
+
console.log();
|
|
408
|
+
log(` ╭${'─'.repeat(62)}╮`);
|
|
409
|
+
log(` │ ${COLORS.bold}Simpl Add-on Installer${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(34 - version.length)}│`);
|
|
410
|
+
log(` ╰${'─'.repeat(62)}╯`);
|
|
411
|
+
console.log();
|
|
414
412
|
|
|
415
413
|
let versionsData;
|
|
416
414
|
|
|
@@ -454,7 +452,7 @@ const main = async () => {
|
|
|
454
452
|
process.exit(1);
|
|
455
453
|
}
|
|
456
454
|
|
|
457
|
-
if (!directName) log('
|
|
455
|
+
if (!directName) log(' 🗄️ Fetching available add-ons...', 'bold');
|
|
458
456
|
|
|
459
457
|
let addons;
|
|
460
458
|
|