@public-ui/kolibri-cli 3.0.1-rc.0 → 3.0.2-1e1d8522b9f6826d286c64e7859e0ac6d14b13a9.0
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/README.md +3 -0
- package/dist/index.js +2 -4
- package/package.json +14 -15
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# KoliBri - CLI-Tools
|
|
2
2
|
|
|
3
|
+
Command line utilities to help maintain and migrate KoliBri projects.
|
|
4
|
+
|
|
3
5
|
[](https://www.npmjs.com/package/@public-ui/components)
|
|
4
6
|
[](https://github.com/public-ui/kolibri/blob/main/LICENSE)
|
|
5
7
|
[](https://www.npmjs.com/package/@public-ui/kolibri-cli)
|
|
@@ -11,6 +13,7 @@
|
|
|
11
13
|
## Motivation
|
|
12
14
|
|
|
13
15
|
The `KoliBri` CLI-Tools are a collection of tools to support the development with `KoliBri` components.
|
|
16
|
+
They also help migrating projects when new components or design tokens are introduced.
|
|
14
17
|
|
|
15
18
|
## Installation
|
|
16
19
|
|
package/dist/index.js
CHANGED
|
@@ -11,16 +11,14 @@ const info_1 = __importDefault(require("./info"));
|
|
|
11
11
|
const migrate_1 = __importDefault(require("./migrate"));
|
|
12
12
|
const reuse_1 = require("./migrate/shares/reuse");
|
|
13
13
|
const versionOfPublicUiKoliBriCli = (0, reuse_1.getVersionOfPublicUiKoliBriCli)();
|
|
14
|
-
const banner = gradient_string_1.default.
|
|
14
|
+
const banner = (0, gradient_string_1.default)(['red', 'green'], { interpolation: 'hsv', hsvSpin: 'long' }).multiline(`
|
|
15
15
|
,--. ,--. ,--. ,--. ,-----. ,--.
|
|
16
16
|
| .' / ,---. | | \`--' | |) /_ ,--.--. \`--'
|
|
17
17
|
| . ' | .-. | | | ,--. | .-. \\ | .--' ,--.
|
|
18
18
|
| |\\ \\ | '-' | | | | | | '--' / | | | |
|
|
19
19
|
\`--' \`--´ \`---´ \`--' \`--' \`------´ \`--' \`--'
|
|
20
20
|
🚹 The accessible HTML-Standard | 👉 https://public-ui.github.io | ${versionOfPublicUiKoliBriCli}
|
|
21
|
-
|
|
22
|
-
interpolation: 'hsv',
|
|
23
|
-
});
|
|
21
|
+
`);
|
|
24
22
|
console.log(banner);
|
|
25
23
|
const program = new commander_1.Command();
|
|
26
24
|
program.name('kolibri').description('CLI for executing some helpful commands for KoliBri projects.').version(versionOfPublicUiKoliBriCli);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/kolibri-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2-1e1d8522b9f6826d286c64e7859e0ac6d14b13a9.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -21,35 +21,34 @@
|
|
|
21
21
|
"description": "CLI for executing some helpful commands for KoliBri projects.",
|
|
22
22
|
"type": "commonjs",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"chalk": "4.1
|
|
25
|
-
"commander": "
|
|
24
|
+
"chalk": "5.4.1",
|
|
25
|
+
"commander": "14.0.0",
|
|
26
26
|
"deepmerge": "4.3.1",
|
|
27
|
-
"gradient-string": "
|
|
27
|
+
"gradient-string": "3.0.0",
|
|
28
28
|
"loglevel": "1.9.2",
|
|
29
29
|
"prettier": "3.5.3",
|
|
30
|
-
"semver": "7.7.
|
|
30
|
+
"semver": "7.7.2",
|
|
31
31
|
"typed-bem": "1.0.0-rc.7",
|
|
32
|
-
"@public-ui/components": "3.0.
|
|
32
|
+
"@public-ui/components": "3.0.2-1e1d8522b9f6826d286c64e7859e0ac6d14b13a9.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/
|
|
36
|
-
"@types/node": "22.15.23",
|
|
35
|
+
"@types/node": "24.0.1",
|
|
37
36
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
38
37
|
"@typescript-eslint/parser": "7.18.0",
|
|
39
38
|
"cpy-cli": "5.0.0",
|
|
40
39
|
"eslint": "8.57.1",
|
|
41
40
|
"eslint-config-prettier": "9.1.0",
|
|
42
|
-
"eslint-plugin-html": "8.1.
|
|
43
|
-
"eslint-plugin-jsdoc": "50.
|
|
41
|
+
"eslint-plugin-html": "8.1.3",
|
|
42
|
+
"eslint-plugin-jsdoc": "50.8.0",
|
|
44
43
|
"eslint-plugin-json": "3.1.0",
|
|
45
44
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
46
|
-
"eslint-plugin-react": "7.37.
|
|
47
|
-
"knip": "5.
|
|
48
|
-
"mocha": "
|
|
49
|
-
"nodemon": "3.1.
|
|
45
|
+
"eslint-plugin-react": "7.37.5",
|
|
46
|
+
"knip": "5.61.0",
|
|
47
|
+
"mocha": "11.6.0",
|
|
48
|
+
"nodemon": "3.1.10",
|
|
50
49
|
"rimraf": "6.0.1",
|
|
51
50
|
"ts-node": "10.9.2",
|
|
52
|
-
"typescript": "5.8.
|
|
51
|
+
"typescript": "5.8.3"
|
|
53
52
|
},
|
|
54
53
|
"files": [
|
|
55
54
|
"dist"
|