@navikt/aksel 2.9.1 → 2.9.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/dist/help.js +2 -2
- package/package.json +3 -2
package/dist/help.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import chalk from "chalk";
|
|
2
|
+
import figlet from "figlet";
|
|
2
3
|
export function helpCommand() {
|
|
4
|
+
console.log(figlet.textSync("Aksel CLI"));
|
|
3
5
|
console.log(`
|
|
4
|
-
✨ Aksel client-tool
|
|
5
|
-
|
|
6
6
|
📝 Documentation
|
|
7
7
|
- ${chalk.blueBright("https://aksel.nav.no/grunnleggende/kode/kommandolinje")}
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navikt/aksel",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.2",
|
|
4
4
|
"description": "Aksel command line interface. Handles css-imports, codemods (planned) and more",
|
|
5
5
|
"author": "Aksel | NAV designsystem team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,12 +28,13 @@
|
|
|
28
28
|
"type": "module",
|
|
29
29
|
"homepage": "https://aksel.nav.no/grunnleggende/kode/kommandolinje",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@navikt/ds-css": "2.9.
|
|
31
|
+
"@navikt/ds-css": "2.9.2",
|
|
32
32
|
"axios": "1.3.6",
|
|
33
33
|
"chalk": "4.1.0",
|
|
34
34
|
"clipboardy": "^3.0.0",
|
|
35
35
|
"enquirer": "^2.3.6",
|
|
36
36
|
"fast-glob": "3.2.11",
|
|
37
|
+
"figlet": "1.6.0",
|
|
37
38
|
"lodash": "4.17.21",
|
|
38
39
|
"react-scanner": "^1.1.0"
|
|
39
40
|
},
|