@public-ui/kolibri-cli 2.0.0-rc.10 → 2.0.0-rc.12
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/migrate/index.js +1 -1
- package/dist/types.js +3 -3
- package/package.json +10 -10
package/dist/migrate/index.js
CHANGED
|
@@ -98,7 +98,7 @@ Source folder to migrate: ${baseDir}
|
|
|
98
98
|
/**
|
|
99
99
|
* Sets the version of the @public-ui/* packages in the package.json file.
|
|
100
100
|
* @param {string} version Version to set
|
|
101
|
-
* @param {
|
|
101
|
+
* @param {Function} cb Callback function
|
|
102
102
|
*/
|
|
103
103
|
function setVersionOfPublicUiPackages(version, cb) {
|
|
104
104
|
let packageJson = (0, reuse_1.getContentOfProjectPkgJson)();
|
package/dist/types.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MARKUP_EXTENSIONS = exports.CUSTOM_ELEMENT_FILE_EXTENSIONS = exports.COMPONENT_FILE_EXTENSIONS = exports.FILE_EXTENSIONS = void 0;
|
|
4
|
-
exports.FILE_EXTENSIONS = ['html', 'js', 'json', 'jsx', '
|
|
5
|
-
exports.COMPONENT_FILE_EXTENSIONS = ['jsx', '
|
|
6
|
-
exports.CUSTOM_ELEMENT_FILE_EXTENSIONS = ['html', 'jsx', '
|
|
4
|
+
exports.FILE_EXTENSIONS = ['html', 'js', 'json', 'jsx', 'ts', 'tsx', 'vue'];
|
|
5
|
+
exports.COMPONENT_FILE_EXTENSIONS = ['jsx', 'tsx', 'vue'];
|
|
6
|
+
exports.CUSTOM_ELEMENT_FILE_EXTENSIONS = ['html', 'jsx', 'tsx', 'vue'];
|
|
7
7
|
exports.MARKUP_EXTENSIONS = exports.COMPONENT_FILE_EXTENSIONS.concat(exports.CUSTOM_ELEMENT_FILE_EXTENSIONS);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/kolibri-cli",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.12",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -23,31 +23,31 @@
|
|
|
23
23
|
"deepmerge": "4.3.1",
|
|
24
24
|
"gradient-string": "2.0.2",
|
|
25
25
|
"loglevel": "1.8.1",
|
|
26
|
-
"prettier": "3.0
|
|
26
|
+
"prettier": "3.1.0",
|
|
27
27
|
"semver": "7.5.4"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@public-ui/components": "2.0.0-rc.
|
|
30
|
+
"@public-ui/components": "2.0.0-rc.12",
|
|
31
31
|
"@types/gradient-string": "1.1.5",
|
|
32
|
-
"@types/node": "20.
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
34
|
-
"@typescript-eslint/parser": "6.
|
|
32
|
+
"@types/node": "20.10.0",
|
|
33
|
+
"@typescript-eslint/eslint-plugin": "6.13.0",
|
|
34
|
+
"@typescript-eslint/parser": "6.13.0",
|
|
35
35
|
"cpy-cli": "5.0.0",
|
|
36
36
|
"depcheck": "1.4.7",
|
|
37
|
-
"eslint": "8.
|
|
37
|
+
"eslint": "8.54.0",
|
|
38
38
|
"eslint-config-prettier": "9.0.0",
|
|
39
39
|
"eslint-plugin-html": "7.1.0",
|
|
40
|
-
"eslint-plugin-jsdoc": "46.
|
|
40
|
+
"eslint-plugin-jsdoc": "46.9.0",
|
|
41
41
|
"eslint-plugin-json": "3.1.0",
|
|
42
42
|
"eslint-plugin-jsx-a11y": "6.8.0",
|
|
43
43
|
"eslint-plugin-no-loops": "0.3.0",
|
|
44
44
|
"eslint-plugin-react": "7.33.2",
|
|
45
|
-
"knip": "
|
|
45
|
+
"knip": "3.0.2",
|
|
46
46
|
"mocha": "10.2.0",
|
|
47
47
|
"nodemon": "3.0.1",
|
|
48
48
|
"rimraf": "3.0.2",
|
|
49
49
|
"ts-node": "10.9.1",
|
|
50
|
-
"typescript": "5.
|
|
50
|
+
"typescript": "5.3.2"
|
|
51
51
|
},
|
|
52
52
|
"files": [
|
|
53
53
|
"dist"
|