@public-ui/kolibri-cli 4.0.0-alpha.4 → 4.0.0-alpha.6
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 +2 -0
- package/package.json +10 -11
package/README.md
CHANGED
|
@@ -69,6 +69,8 @@ If errors occur in our packages, we would like to ask you to create an issue und
|
|
|
69
69
|
|
|
70
70
|
With the `migrate` command you can migrate your project to the latest version of `KoliBri`.
|
|
71
71
|
|
|
72
|
+
> **Hint:** The migration tool currently supports React projects (JSX/TSX), Vue single-file components, and HTML/XHTML template-based projects such as Angular applications or vanilla custom elements. Support for additional project types is planned.
|
|
73
|
+
|
|
72
74
|
Actually the following migration tasks from version 1 to version 2 are available:
|
|
73
75
|
|
|
74
76
|
- Component renaming ✓
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/kolibri-cli",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.6",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"type": "commonjs",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"chalk": "5.6.2",
|
|
25
|
-
"commander": "14.0.
|
|
25
|
+
"commander": "14.0.2",
|
|
26
26
|
"deepmerge": "4.3.1",
|
|
27
27
|
"gradient-string": "3.0.0",
|
|
28
28
|
"loglevel": "1.9.2",
|
|
29
|
-
"prettier": "3.
|
|
29
|
+
"prettier": "3.7.1",
|
|
30
30
|
"prettier-plugin-organize-imports": "4.3.0",
|
|
31
31
|
"semver": "7.7.3",
|
|
32
32
|
"typed-bem": "1.0.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "24.
|
|
35
|
+
"@types/node": "24.10.1",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
37
37
|
"@typescript-eslint/parser": "7.18.0",
|
|
38
38
|
"cpy-cli": "6.0.0",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"eslint-plugin-json": "3.1.0",
|
|
45
45
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
46
46
|
"eslint-plugin-react": "7.37.5",
|
|
47
|
-
"knip": "5.
|
|
48
|
-
"mocha": "11.7.
|
|
49
|
-
"nodemon": "3.1.
|
|
50
|
-
"rimraf": "6.
|
|
47
|
+
"knip": "5.70.2",
|
|
48
|
+
"mocha": "11.7.5",
|
|
49
|
+
"nodemon": "3.1.11",
|
|
50
|
+
"rimraf": "6.1.2",
|
|
51
51
|
"ts-node": "10.9.2",
|
|
52
52
|
"typescript": "5.9.3",
|
|
53
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
53
|
+
"@public-ui/components": "4.0.0-alpha.6"
|
|
54
54
|
},
|
|
55
55
|
"files": [
|
|
56
56
|
"dist"
|
|
@@ -62,10 +62,9 @@
|
|
|
62
62
|
"lint": "pnpm lint:eslint && pnpm lint:tsc",
|
|
63
63
|
"lint:eslint": "eslint src",
|
|
64
64
|
"lint:tsc": "tsc --noemit",
|
|
65
|
-
"pretest": "pnpm build",
|
|
65
|
+
"pretest:unit": "pnpm build",
|
|
66
66
|
"restart": "pnpm reset && pnpm start",
|
|
67
67
|
"start": "rimraf test && cpy \"../../samples/react/src/components\" test/src && cpy \"../../samples/react/public/*.html\" test/ && ts-node src/index.ts migrate --ignore-uncommitted-changes --test-tasks test",
|
|
68
|
-
"test": "pnpm test:unit",
|
|
69
68
|
"test:unit": "cross-env TS_NODE_PROJECT=tsconfig.test.json mocha --require ts-node/register test/**/*.ts --no-experimental-strip-types",
|
|
70
69
|
"unused": "knip",
|
|
71
70
|
"watch": "nodemon --ignore package.json src/index.ts migrate --ignore-uncommitted-changes --test-tasks test"
|