apero-kit-cli 1.4.1 → 1.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/bin/ak.js +1 -1
- package/package.json +1 -1
- package/src/commands/help.js +0 -11
package/bin/ak.js
CHANGED
|
@@ -10,7 +10,7 @@ import { statusCommand } from '../src/commands/status.js';
|
|
|
10
10
|
import { doctorCommand } from '../src/commands/doctor.js';
|
|
11
11
|
import { helpCommand } from '../src/commands/help.js';
|
|
12
12
|
|
|
13
|
-
const VERSION = '1.4.
|
|
13
|
+
const VERSION = '1.4.2';
|
|
14
14
|
|
|
15
15
|
console.log(chalk.cyan.bold('\n Apero Kit CLI') + chalk.gray(` v${VERSION}\n`));
|
|
16
16
|
|
package/package.json
CHANGED
package/src/commands/help.js
CHANGED
|
@@ -703,17 +703,6 @@ function generateNav(activeSection, t, lang) {
|
|
|
703
703
|
</a>
|
|
704
704
|
`).join('')}
|
|
705
705
|
</div>
|
|
706
|
-
<div class="nav-section">
|
|
707
|
-
<h3>${t.resources}</h3>
|
|
708
|
-
<a href="https://github.com/Thanh-apero/apero-kit-cli" target="_blank">
|
|
709
|
-
<span class="icon">📦</span>
|
|
710
|
-
<span>${t.github}</span>
|
|
711
|
-
</a>
|
|
712
|
-
<a href="https://www.npmjs.com/package/apero-kit-cli" target="_blank">
|
|
713
|
-
<span class="icon">📥</span>
|
|
714
|
-
<span>${t.npm}</span>
|
|
715
|
-
</a>
|
|
716
|
-
</div>
|
|
717
706
|
</nav>`;
|
|
718
707
|
}
|
|
719
708
|
|