@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.
Files changed (2) hide show
  1. package/install.js +6 -8
  2. 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
- if (!directName) {
408
- console.log();
409
- log(` ╭${''.repeat(62)}╮`);
410
- log(` │ ${COLORS.bold}Simpl Add-on Installer${COLORS.reset} ${COLORS.dim}(v${version})${COLORS.reset}${' '.repeat(34 - version.length)}│`);
411
- log(` ╰${'─'.repeat(62)}╯`);
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(' 🧰 Fetching available add-ons...', 'bold');
455
+ if (!directName) log(' 🗄️ Fetching available add-ons...', 'bold');
458
456
 
459
457
  let addons;
460
458
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ijuantm/simpl-addon",
3
3
  "description": "CLI tool to install Simpl framework add-ons.",
4
- "version": "2.4.6",
4
+ "version": "2.4.8",
5
5
  "scripts": {
6
6
  "link": "npm link",
7
7
  "unlink": "npm unlink -g @ijuantm/simpl-addon"