@windwalker-io/core 4.1.10 → 4.1.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/bin/release.js
CHANGED
|
@@ -24,7 +24,7 @@ if (cliInput['help'] || cliInput['h']) {
|
|
|
24
24
|
// exec(`yarn build:prod`, { stdio: 'inherit' });
|
|
25
25
|
|
|
26
26
|
console.log(`>>> npm version ${args.join(' ')}`);
|
|
27
|
-
const buffer = exec(`npm version ${args.join(' ')}`);
|
|
27
|
+
const buffer = exec(`npm version ${args.join(' ')} --no-workspaces-update`);
|
|
28
28
|
|
|
29
29
|
const ver = buffer.toString().split("\n")[1];
|
|
30
30
|
|
package/dist/debugger-console.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
(() => {})();
|
|
2
|
-
//# sourceMappingURL=debugger-console.js.map
|
|
1
|
+
(() => {})();
|
|
2
|
+
//# sourceMappingURL=debugger-console.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windwalker-io/core",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Windwalker Core JS package",
|
|
6
6
|
"scripts": {
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"@fortawesome/vue-fontawesome": "^3.0.1",
|
|
22
22
|
"@tailwindcss/custom-forms": "^0.2.1",
|
|
23
23
|
"@tailwindcss/ui": "^0.7.2",
|
|
24
|
+
"@types/gulp-rename": "^2",
|
|
24
25
|
"@vue/reactivity": "^3.3.7",
|
|
25
26
|
"@vue/tsconfig": "^0.4.0",
|
|
26
27
|
"@windwalker-io/fusion": "^1.0",
|
|
@@ -52,5 +53,8 @@
|
|
|
52
53
|
"vendors": [
|
|
53
54
|
"@windwalker-io/core"
|
|
54
55
|
]
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"gulp-rename": "^2.0.0"
|
|
55
59
|
}
|
|
56
60
|
}
|
package/src/asset-sync.mjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { babel, ts } from '@windwalker-io/fusion';
|
|
3
3
|
import path from 'path';
|
|
4
4
|
import { loadJson } from './utils.mjs';
|
|
5
|
-
export * from './legacy/4.0/js-
|
|
5
|
+
export * from './legacy/4.0/js-sync.mjs';
|
|
6
6
|
|
|
7
7
|
export function syncModuleScripts(source = 'src/Module', dest = 'www/assets/js/view/', options = {}) {
|
|
8
8
|
const jsOptions = options.js || {};
|
|
@@ -43,7 +43,10 @@ export function syncModuleTS(source = 'src/Module', dest = 'www/assets/js/view/'
|
|
|
43
43
|
{
|
|
44
44
|
tsconfig: path.resolve('tsconfig.json'),
|
|
45
45
|
rename: (path) => {
|
|
46
|
-
|
|
46
|
+
|
|
47
|
+
path.dirname = path.dirname.replace(/\\/g, '/')
|
|
48
|
+
.replace(/\/assets/, '')
|
|
49
|
+
.toLowerCase();
|
|
47
50
|
},
|
|
48
51
|
...options
|
|
49
52
|
}
|
|
File without changes
|