@ijuantm/simpl-addon 2.4.1 → 2.4.2
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 +2 -2
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -406,7 +406,7 @@ const main = async () => {
|
|
|
406
406
|
|
|
407
407
|
console.log();
|
|
408
408
|
log(` ╭${'─'.repeat(62)}╮`);
|
|
409
|
-
log(` │ ${COLORS.bold}Simpl Add-on Installer${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(
|
|
409
|
+
log(` │ ${COLORS.bold}Simpl Add-on Installer${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(35 - version.length)}│`);
|
|
410
410
|
log(` ╰${'─'.repeat(62)}╯`);
|
|
411
411
|
console.log();
|
|
412
412
|
|
|
@@ -506,7 +506,7 @@ const main = async () => {
|
|
|
506
506
|
|
|
507
507
|
console.log();
|
|
508
508
|
log(` ╭${'─'.repeat(62)}╮`);
|
|
509
|
-
log(` │ ${COLORS.bold}Installing: ${COLORS.cyan}${addonName}${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(
|
|
509
|
+
log(` │ ${COLORS.bold}Installing: ${COLORS.cyan}${addonName}${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(43 - addonName.length - version.length)}│`);
|
|
510
510
|
log(` ╰${'─'.repeat(62)}╯`);
|
|
511
511
|
console.log();
|
|
512
512
|
log(' 📦 Downloading add-on...', 'bold');
|