@public-ui/kolibri-cli 1.7.6-rc.1 → 1.7.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/dist/migrate/index.js
CHANGED
|
@@ -84,7 +84,7 @@ Source folder to migrate: ${baseDir}
|
|
|
84
84
|
/**
|
|
85
85
|
* Sets the version of the @public-ui/* packages in the package.json file.
|
|
86
86
|
* @param {string} version Version to set
|
|
87
|
-
* @param {
|
|
87
|
+
* @param {Function} cb Callback function
|
|
88
88
|
*/
|
|
89
89
|
function setVersionOfPublicUiPackages(version, cb) {
|
|
90
90
|
let packageJson = (0, reuse_1.getContentOfProjectPkgJson)();
|
|
@@ -24,7 +24,7 @@ class TaskRunner {
|
|
|
24
24
|
this.setBaseDir(baseDir);
|
|
25
25
|
this.setCliVersion(cliVersion);
|
|
26
26
|
this.setProjectVersion(projectVersion);
|
|
27
|
-
this.setConfig(config);
|
|
27
|
+
this.setConfig(Object.assign({}, config)); // clone config
|
|
28
28
|
}
|
|
29
29
|
setBaseDir(baseDir) {
|
|
30
30
|
if (!fs_1.default.existsSync(path_1.default.resolve(process.cwd(), baseDir))) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/kolibri-cli",
|
|
3
|
-
"version": "1.7.6
|
|
3
|
+
"version": "1.7.6",
|
|
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": "
|
|
30
|
+
"@public-ui/components": "2.0.0-rc.11",
|
|
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"
|