@tarojs/webpack5-runner 3.5.0-theta.0 → 3.5.1
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/LICENSE +21 -0
- package/dist/index.h5.js +39 -29
- package/dist/index.h5.js.map +1 -1
- package/dist/plugins/BuildNativePlugin.js +3 -3
- package/dist/plugins/BuildNativePlugin.js.map +1 -1
- package/dist/plugins/H5Plugin.js +2 -1
- package/dist/plugins/H5Plugin.js.map +1 -1
- package/dist/plugins/MiniPlugin.js +10 -10
- package/dist/plugins/MiniPlugin.js.map +1 -1
- package/dist/postcss/postcss.h5.js +2 -2
- package/dist/postcss/postcss.h5.js.map +1 -1
- package/dist/prerender/prerender.js +6 -6
- package/dist/prerender/prerender.js.map +1 -1
- package/dist/utils/H5AppInstance.js +5 -5
- package/dist/utils/H5AppInstance.js.map +1 -1
- package/dist/utils/index.js +7 -3
- package/dist/utils/index.js.map +1 -1
- package/dist/webpack/Combination.js +13 -4
- package/dist/webpack/Combination.js.map +1 -1
- package/dist/webpack/H5BaseConfig.js +1 -1
- package/dist/webpack/H5BaseConfig.js.map +1 -1
- package/dist/webpack/H5Combination.js +16 -15
- package/dist/webpack/H5Combination.js.map +1 -1
- package/dist/webpack/H5WebpackPlugin.js +11 -8
- package/dist/webpack/H5WebpackPlugin.js.map +1 -1
- package/dist/webpack/MiniWebpackPlugin.js +1 -0
- package/dist/webpack/MiniWebpackPlugin.js.map +1 -1
- package/dist/webpack/WebpackModule.js +6 -0
- package/dist/webpack/WebpackModule.js.map +1 -1
- package/dist/webpack/WebpackPlugin.js +7 -2
- package/dist/webpack/WebpackPlugin.js.map +1 -1
- package/package.json +33 -30
package/package.json
CHANGED
|
@@ -1,20 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/webpack5-runner",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "Taro app runner",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "pnpm run clean && pnpm run prod",
|
|
8
|
-
"dev": "pnpm run mv:comp && tsc -w",
|
|
9
|
-
"prod": "tsc && pnpm run mv:comp",
|
|
10
|
-
"mv:comp": "node ./mv-comp.js",
|
|
11
|
-
"clean": "rimraf dist",
|
|
12
|
-
"test": "cross-env NODE_ENV=jest jest",
|
|
13
|
-
"test:ci": "cross-env NODE_ENV=jest jest -i",
|
|
14
|
-
"test:dev": "cross-env NODE_ENV=jest jest --watch",
|
|
15
|
-
"test:coverage": "cross-env NODE_ENV=jest jest --coverage",
|
|
16
|
-
"updateSnapshot": "cross-env NODE_ENV=jest jest --updateSnapshot"
|
|
17
|
-
},
|
|
18
6
|
"repository": {
|
|
19
7
|
"type": "git",
|
|
20
8
|
"url": "git+https://github.com/NervJS/taro.git"
|
|
@@ -34,19 +22,19 @@
|
|
|
34
22
|
"homepage": "https://github.com/NervJS/taro#readme",
|
|
35
23
|
"dependencies": {
|
|
36
24
|
"@parcel/css": "^1.4.0",
|
|
37
|
-
"@tarojs/helper": "
|
|
38
|
-
"@tarojs/plugin-platform-alipay": "
|
|
39
|
-
"@tarojs/plugin-platform-jd": "
|
|
40
|
-
"@tarojs/plugin-platform-qq": "
|
|
41
|
-
"@tarojs/plugin-platform-swan": "
|
|
42
|
-
"@tarojs/plugin-platform-tt": "
|
|
43
|
-
"@tarojs/plugin-platform-weapp": "
|
|
44
|
-
"@tarojs/runner-utils": "
|
|
45
|
-
"@tarojs/runtime": "
|
|
46
|
-
"@tarojs/shared": "
|
|
47
|
-
"@tarojs/taro": "
|
|
48
|
-
"@tarojs/taro-loader": "
|
|
49
|
-
"@tarojs/webpack5-prebundle": "
|
|
25
|
+
"@tarojs/helper": "3.5.1",
|
|
26
|
+
"@tarojs/plugin-platform-alipay": "3.5.1",
|
|
27
|
+
"@tarojs/plugin-platform-jd": "3.5.1",
|
|
28
|
+
"@tarojs/plugin-platform-qq": "3.5.1",
|
|
29
|
+
"@tarojs/plugin-platform-swan": "3.5.1",
|
|
30
|
+
"@tarojs/plugin-platform-tt": "3.5.1",
|
|
31
|
+
"@tarojs/plugin-platform-weapp": "3.5.1",
|
|
32
|
+
"@tarojs/runner-utils": "3.5.1",
|
|
33
|
+
"@tarojs/runtime": "3.5.1",
|
|
34
|
+
"@tarojs/shared": "3.5.1",
|
|
35
|
+
"@tarojs/taro": "3.5.1",
|
|
36
|
+
"@tarojs/taro-loader": "3.5.1",
|
|
37
|
+
"@tarojs/webpack5-prebundle": "3.5.1",
|
|
50
38
|
"acorn-walk": "^8.0.0",
|
|
51
39
|
"autoprefixer": "^9.7.4",
|
|
52
40
|
"babel-loader": "8.2.1",
|
|
@@ -73,11 +61,11 @@
|
|
|
73
61
|
"mkdirp": "^1.0.4",
|
|
74
62
|
"ora": "4.0.3",
|
|
75
63
|
"postcss": "8.3.5",
|
|
76
|
-
"postcss-html-transform": "
|
|
64
|
+
"postcss-html-transform": "3.5.1",
|
|
77
65
|
"postcss-import": "12.0.1",
|
|
78
66
|
"postcss-loader": "6.2.1",
|
|
79
|
-
"postcss-plugin-constparse": "
|
|
80
|
-
"postcss-pxtransform": "
|
|
67
|
+
"postcss-plugin-constparse": "3.5.1",
|
|
68
|
+
"postcss-pxtransform": "3.5.1",
|
|
81
69
|
"postcss-url": "8.0.0",
|
|
82
70
|
"regenerator-runtime": "0.11",
|
|
83
71
|
"resolve": "^1.22.0",
|
|
@@ -98,5 +86,20 @@
|
|
|
98
86
|
"webpack-format-messages": "^2.0.6",
|
|
99
87
|
"webpack-sources": "^3.2.3",
|
|
100
88
|
"webpackbar": "^5.0.2"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@babel/core": "^7.14.5"
|
|
92
|
+
},
|
|
93
|
+
"scripts": {
|
|
94
|
+
"build": "pnpm run clean && pnpm run prod",
|
|
95
|
+
"dev": "pnpm run mv:comp && tsc -w",
|
|
96
|
+
"prod": "tsc && pnpm run mv:comp",
|
|
97
|
+
"mv:comp": "node ./mv-comp.js",
|
|
98
|
+
"clean": "rimraf dist",
|
|
99
|
+
"test": "cross-env NODE_ENV=jest jest",
|
|
100
|
+
"test:ci": "cross-env NODE_ENV=jest jest --ci -i",
|
|
101
|
+
"test:dev": "cross-env NODE_ENV=jest jest --watch",
|
|
102
|
+
"test:coverage": "cross-env NODE_ENV=jest jest --coverage",
|
|
103
|
+
"updateSnapshot": "cross-env NODE_ENV=jest jest --updateSnapshot"
|
|
101
104
|
}
|
|
102
|
-
}
|
|
105
|
+
}
|