@tarojs/webpack5-runner 4.2.1-beta.0 → 4.2.1-beta.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/dist/plugins/AsyncSubPackagePlugin.js +489 -0
- package/dist/plugins/AsyncSubPackagePlugin.js.map +1 -0
- package/dist/plugins/BuildNativePlugin.js +15 -11
- package/dist/plugins/BuildNativePlugin.js.map +1 -1
- package/dist/plugins/HarmonyPlugin.js +1 -1
- package/dist/plugins/HarmonyPlugin.js.map +1 -1
- package/dist/plugins/MiniCompileModePlugin.js +49 -4
- package/dist/plugins/MiniCompileModePlugin.js.map +1 -1
- package/dist/plugins/MiniPlugin.js +261 -56
- package/dist/plugins/MiniPlugin.js.map +1 -1
- package/dist/plugins/SubPackageIndiePlugin.js +1022 -0
- package/dist/plugins/SubPackageIndiePlugin.js.map +1 -0
- package/dist/plugins/TaroNormalModule.js +16 -0
- package/dist/plugins/TaroNormalModule.js.map +1 -1
- package/dist/plugins/TaroNormalModulesPlugin.js +127 -6
- package/dist/plugins/TaroNormalModulesPlugin.js.map +1 -1
- package/dist/plugins/TaroSingleEntryPlugin.js +1 -1
- package/dist/plugins/TaroSingleEntryPlugin.js.map +1 -1
- package/dist/template/comp.js +2 -1
- package/dist/utils/asyncSubPackage.js +106 -0
- package/dist/utils/asyncSubPackage.js.map +1 -0
- package/dist/utils/component.js +2 -1
- package/dist/utils/component.js.map +1 -1
- package/dist/utils/forceCustomWrapper.js +17 -0
- package/dist/utils/forceCustomWrapper.js.map +1 -0
- package/dist/webpack/HarmonyWebpackPlugin.js +3 -1
- package/dist/webpack/HarmonyWebpackPlugin.js.map +1 -1
- package/dist/webpack/MiniBaseConfig.js +2 -0
- package/dist/webpack/MiniBaseConfig.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/webpack5-runner",
|
|
3
|
-
"version": "4.2.1-beta.
|
|
3
|
+
"version": "4.2.1-beta.2",
|
|
4
4
|
"description": "Taro app runner",
|
|
5
5
|
"author": "O2Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"webpack-format-messages": "^3.0.1",
|
|
63
63
|
"webpackbar": "^5.0.2",
|
|
64
64
|
"webpack-virtual-modules": "^0.6.1",
|
|
65
|
-
"@tarojs/
|
|
66
|
-
"@tarojs/
|
|
67
|
-
"@tarojs/
|
|
68
|
-
"@tarojs/webpack5-prebundle": "4.2.1-beta.
|
|
69
|
-
"postcss-html-transform": "4.2.1-beta.
|
|
70
|
-
"
|
|
71
|
-
"postcss-pxtransform": "4.2.1-beta.
|
|
72
|
-
"
|
|
65
|
+
"@tarojs/helper": "4.2.1-beta.2",
|
|
66
|
+
"@tarojs/runner-utils": "4.2.1-beta.2",
|
|
67
|
+
"@tarojs/shared": "4.2.1-beta.2",
|
|
68
|
+
"@tarojs/webpack5-prebundle": "4.2.1-beta.2",
|
|
69
|
+
"postcss-html-transform": "4.2.1-beta.2",
|
|
70
|
+
"postcss-plugin-constparse": "4.2.1-beta.2",
|
|
71
|
+
"postcss-pxtransform": "4.2.1-beta.2",
|
|
72
|
+
"@tarojs/taro-loader": "4.2.1-beta.2"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@babel/core": "^7.24.4",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"stylus": "^0.63.0",
|
|
81
81
|
"jest-transform-css": "^6.0.1",
|
|
82
82
|
"webpack": "5.91.0",
|
|
83
|
-
"@tarojs/taro": "4.2.1-beta.
|
|
84
|
-
"@tarojs/runtime": "4.2.1-beta.
|
|
83
|
+
"@tarojs/taro": "4.2.1-beta.2",
|
|
84
|
+
"@tarojs/runtime": "4.2.1-beta.2"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"@babel/core": "^7.12.0",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"sass": "^1.3.0",
|
|
91
91
|
"stylus": ">=0.52.4",
|
|
92
92
|
"webpack": "5.91.0",
|
|
93
|
-
"@tarojs/runtime": "4.2.1-beta.
|
|
93
|
+
"@tarojs/runtime": "4.2.1-beta.2"
|
|
94
94
|
},
|
|
95
95
|
"peerDependenciesMeta": {
|
|
96
96
|
"less": {
|