@modern-js/module-tools 1.6.0-alpha.0 → 1.6.2
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/CHANGELOG.md +67 -27
- package/dist/js/modern/commands/build.js +19 -5
- package/dist/js/modern/features/build/bundle/index.js +5 -2
- package/dist/js/modern/features/build/bundle/runSpeedy.js +3 -3
- package/dist/js/modern/features/build/bundleless/generator-dts/utils.js +5 -5
- package/dist/js/modern/features/build/bundleless/index.js +12 -2
- package/dist/js/modern/features/build/bundleless/runBabel.js +2 -2
- package/dist/js/modern/features/build/bundleless/style.js +2 -2
- package/dist/js/modern/features/build/index.js +20 -16
- package/dist/js/modern/features/build/normalize.js +21 -13
- package/dist/js/modern/features/build/utils.js +12 -1
- package/dist/js/modern/index.js +1 -0
- package/dist/js/modern/schema/build-config.js +10 -3
- package/dist/js/modern/utils/babel.js +2 -0
- package/dist/js/modern/utils/copy.js +2 -2
- package/dist/js/node/commands/build.js +18 -6
- package/dist/js/node/features/build/bundle/index.js +8 -2
- package/dist/js/node/features/build/bundle/runSpeedy.js +3 -3
- package/dist/js/node/features/build/bundleless/generator-dts/utils.js +4 -5
- package/dist/js/node/features/build/bundleless/index.js +16 -2
- package/dist/js/node/features/build/bundleless/runBabel.js +1 -1
- package/dist/js/node/features/build/bundleless/style.js +1 -1
- package/dist/js/node/features/build/index.js +27 -14
- package/dist/js/node/features/build/normalize.js +20 -12
- package/dist/js/node/features/build/utils.js +19 -2
- package/dist/js/node/index.js +17 -0
- package/dist/js/node/schema/build-config.js +10 -3
- package/dist/js/node/utils/babel.js +5 -0
- package/dist/js/node/utils/copy.js +1 -1
- package/dist/types/features/build/bundle/runSpeedy.d.ts +1 -1
- package/dist/types/features/build/index.d.ts +9 -1
- package/dist/types/features/build/normalize.d.ts +2 -1
- package/dist/types/features/build/utils.d.ts +2 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/schema/build-config.d.ts +22 -4
- package/dist/types/schema/index.d.ts +22 -4
- package/dist/types/schema/output.d.ts +22 -4
- package/dist/types/schema/types.d.ts +1 -0
- package/package.json +19 -17
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.6.
|
|
14
|
+
"version": "1.6.2",
|
|
15
15
|
"bin": {
|
|
16
16
|
"modern": "./bin/modern.js"
|
|
17
17
|
},
|
|
@@ -54,22 +54,23 @@
|
|
|
54
54
|
"@babel/runtime": "^7.18.0",
|
|
55
55
|
"@babel/traverse": "^7.18.0",
|
|
56
56
|
"@babel/types": "^7.18.0",
|
|
57
|
-
"@modern-js/babel-compiler": "^1.2.
|
|
58
|
-
"@modern-js/babel-preset-module": "^1.
|
|
59
|
-
"@modern-js/core": "^1.12.
|
|
60
|
-
"@modern-js/css-config": "^1.2.
|
|
57
|
+
"@modern-js/babel-compiler": "^1.2.6",
|
|
58
|
+
"@modern-js/babel-preset-module": "^1.3.11",
|
|
59
|
+
"@modern-js/core": "^1.12.4",
|
|
60
|
+
"@modern-js/css-config": "^1.2.7",
|
|
61
61
|
"@modern-js/i18n-cli-language-detector": "^1.2.4",
|
|
62
|
-
"@modern-js/new-action": "^1.3.11
|
|
63
|
-
"@modern-js/plugin": "^1.4.0
|
|
64
|
-
"@modern-js/plugin-analyze": "^1.4.7
|
|
65
|
-
"@modern-js/plugin-changeset": "^1.3.1
|
|
66
|
-
"@modern-js/plugin-i18n": "^1.2.
|
|
67
|
-
"@modern-js/plugin-jarvis": "^1.2.14
|
|
68
|
-
"@modern-js/style-compiler": "^1.2.
|
|
69
|
-
"@modern-js/utils": "^1.7.
|
|
62
|
+
"@modern-js/new-action": "^1.3.11",
|
|
63
|
+
"@modern-js/plugin": "^1.4.0",
|
|
64
|
+
"@modern-js/plugin-analyze": "^1.4.7",
|
|
65
|
+
"@modern-js/plugin-changeset": "^1.3.1",
|
|
66
|
+
"@modern-js/plugin-i18n": "^1.2.7",
|
|
67
|
+
"@modern-js/plugin-jarvis": "^1.2.14",
|
|
68
|
+
"@modern-js/style-compiler": "^1.2.12",
|
|
69
|
+
"@modern-js/utils": "^1.7.11",
|
|
70
70
|
"@rollup/plugin-json": "~4.1.0",
|
|
71
|
-
"@speedy-js/speedy-
|
|
72
|
-
"@speedy-js/speedy-
|
|
71
|
+
"@speedy-js/speedy-types": "0.13.2-alpha.3",
|
|
72
|
+
"@speedy-js/speedy-core": "0.13.2-alpha.3",
|
|
73
|
+
"@speedy-js/speedy-plugin-es5": "0.13.2-alpha.3",
|
|
73
74
|
"normalize-path": "^3.0.0",
|
|
74
75
|
"p-map": "^4",
|
|
75
76
|
"process.argv": "^0.6.0",
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"devDependencies": {
|
|
82
83
|
"@scripts/build": "0.0.0",
|
|
83
84
|
"@scripts/jest-config": "0.0.0",
|
|
84
|
-
"@speedy-js/speedy-types": "0.13.
|
|
85
|
+
"@speedy-js/speedy-types": "0.13.2-alpha.3",
|
|
85
86
|
"@types/babel__core": "^7.1.15",
|
|
86
87
|
"@types/babel__generator": "^7.6.3",
|
|
87
88
|
"@types/babel__traverse": "^7.14.2",
|
|
@@ -113,7 +114,8 @@
|
|
|
113
114
|
"files": [
|
|
114
115
|
"src/**/*",
|
|
115
116
|
"tsconfig.json",
|
|
116
|
-
"package.json"
|
|
117
|
+
"package.json",
|
|
118
|
+
"./modern.config.js"
|
|
117
119
|
],
|
|
118
120
|
"output": [
|
|
119
121
|
"dist/**/*"
|