@umijs/bundler-utils 4.0.0-rc.9 → 4.0.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/compiled/babel/index.js +62811 -32861
- package/compiled/es-module-lexer/LICENSE +10 -10
- package/compiled/es-module-lexer/index.js +1 -1
- package/compiled/es-module-lexer/types/lexer.d.ts +86 -86
- package/compiled/tapable/LICENSE +21 -0
- package/compiled/tapable/index.js +1 -0
- package/compiled/tapable/package.json +1 -0
- package/compiled/tapable/tapable.d.ts +116 -0
- package/dist/https.d.ts +10 -0
- package/dist/https.js +75 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +18 -13
- package/dist/types.d.ts +5 -0
- package/dist/types.js +2 -0
- package/package.json +21 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umijs/bundler-utils",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"homepage": "https://github.com/umijs/umi-next/tree/master/packages/bundler-utils#readme",
|
|
5
5
|
"bugs": "https://github.com/umijs/umi-next/issues",
|
|
6
6
|
"repository": {
|
|
@@ -16,20 +16,22 @@
|
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "pnpm tsc",
|
|
19
|
-
"build:deps": "
|
|
20
|
-
"dev": "pnpm build --
|
|
19
|
+
"build:deps": "umi-scripts bundleDeps",
|
|
20
|
+
"dev": "pnpm build --watch"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@umijs/utils": "4.0.
|
|
24
|
-
"esbuild": "0.14.
|
|
23
|
+
"@umijs/utils": "4.0.2",
|
|
24
|
+
"esbuild": "0.14.36",
|
|
25
|
+
"regenerate-unicode-properties": "10.0.1",
|
|
26
|
+
"spdy": "^4.0.2"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
29
|
"@babel/code-frame": "7.16.7",
|
|
28
|
-
"@babel/core": "7.17.
|
|
29
|
-
"@babel/generator": "7.17.
|
|
30
|
+
"@babel/core": "7.17.9",
|
|
31
|
+
"@babel/generator": "7.17.9",
|
|
30
32
|
"@babel/helper-module-imports": "7.16.7",
|
|
31
|
-
"@babel/parser": "7.17.
|
|
32
|
-
"@babel/plugin-proposal-decorators": "7.17.
|
|
33
|
+
"@babel/parser": "7.17.9",
|
|
34
|
+
"@babel/plugin-proposal-decorators": "7.17.9",
|
|
33
35
|
"@babel/plugin-proposal-do-expressions": "7.16.7",
|
|
34
36
|
"@babel/plugin-proposal-export-default-from": "7.16.7",
|
|
35
37
|
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
|
|
@@ -43,18 +45,20 @@
|
|
|
43
45
|
"@babel/preset-typescript": "7.16.7",
|
|
44
46
|
"@babel/register": "7.17.7",
|
|
45
47
|
"@babel/template": "7.16.7",
|
|
46
|
-
"@babel/traverse": "7.17.
|
|
48
|
+
"@babel/traverse": "7.17.9",
|
|
47
49
|
"@babel/types": "7.17.0",
|
|
48
50
|
"@types/babel__code-frame": "7.0.3",
|
|
49
51
|
"@types/babel__generator": "7.6.4",
|
|
50
52
|
"@types/babel__parser": "7.1.1",
|
|
51
53
|
"@types/babel__template": "7.4.1",
|
|
52
|
-
"@types/babel__traverse": "7.
|
|
54
|
+
"@types/babel__traverse": "7.17.1",
|
|
53
55
|
"@types/less": "3.0.3",
|
|
56
|
+
"@types/spdy": "^3.4.5",
|
|
54
57
|
"cjs-module-lexer": "1.2.2",
|
|
55
|
-
"es-module-lexer": "0.10.
|
|
56
|
-
"express": "4.
|
|
57
|
-
"less": "4.1.2"
|
|
58
|
+
"es-module-lexer": "0.10.5",
|
|
59
|
+
"express": "4.18.1",
|
|
60
|
+
"less": "4.1.2",
|
|
61
|
+
"tapable": "2.2.1"
|
|
58
62
|
},
|
|
59
63
|
"publishConfig": {
|
|
60
64
|
"access": "public"
|
|
@@ -69,6 +73,7 @@
|
|
|
69
73
|
"esbuild",
|
|
70
74
|
"express",
|
|
71
75
|
"less",
|
|
76
|
+
"tapable",
|
|
72
77
|
"./bundles/babel/bundle"
|
|
73
78
|
],
|
|
74
79
|
"externals": {
|
|
@@ -77,7 +82,8 @@
|
|
|
77
82
|
"esbuild": "$$LOCAL",
|
|
78
83
|
"es-module-lexer": "$$LOCAL",
|
|
79
84
|
"express": "$$LOCAL",
|
|
80
|
-
"less": "$$LOCAL"
|
|
85
|
+
"less": "$$LOCAL",
|
|
86
|
+
"tapable": "$$LOCAL"
|
|
81
87
|
},
|
|
82
88
|
"noMinify": [
|
|
83
89
|
"./bundles/babel/bundle"
|