@umijs/bundler-utils 4.0.0-rc.5 → 4.0.0-rc.8
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 +13180 -10851
- package/compiled/babel/index1.js +32 -38
- package/compiled/es-module-lexer/LICENSE +1 -1
- package/compiled/es-module-lexer/index.js +1 -1
- package/compiled/express/LICENSE +24 -0
- package/compiled/express/body-parser/index.d.ts +107 -0
- package/compiled/express/connect/index.d.ts +93 -0
- package/compiled/express/express-serve-static-core/index.d.ts +1252 -0
- package/compiled/express/index.d.ts +133 -0
- package/compiled/express/index.js +321 -0
- package/compiled/express/mime/index.d.ts +35 -0
- package/compiled/express/package.json +1 -0
- package/compiled/express/qs/index.d.ts +62 -0
- package/compiled/express/range-parser/index.d.ts +35 -0
- package/compiled/express/serve-static/index.d.ts +108 -0
- package/compiled/less/index.d.ts +284 -0
- package/compiled/less/index.js +17 -0
- package/compiled/less/package.json +1 -0
- package/package.json +16 -9
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"less","author":{"name":"Alexis Sellier","email":"self@cloudhead.net"},"license":"Apache-2.0"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umijs/bundler-utils",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.8",
|
|
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": {
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"dev": "pnpm build -- --watch"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@umijs/utils": "4.0.0-rc.
|
|
24
|
-
"esbuild": "0.14.
|
|
23
|
+
"@umijs/utils": "4.0.0-rc.8",
|
|
24
|
+
"esbuild": "0.14.27"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/code-frame": "7.16.7",
|
|
28
|
-
"@babel/core": "7.17.
|
|
29
|
-
"@babel/generator": "7.17.
|
|
28
|
+
"@babel/core": "7.17.7",
|
|
29
|
+
"@babel/generator": "7.17.7",
|
|
30
30
|
"@babel/helper-module-imports": "7.16.7",
|
|
31
|
-
"@babel/parser": "7.17.
|
|
31
|
+
"@babel/parser": "7.17.7",
|
|
32
32
|
"@babel/plugin-proposal-decorators": "7.17.2",
|
|
33
33
|
"@babel/plugin-proposal-do-expressions": "7.16.7",
|
|
34
34
|
"@babel/plugin-proposal-export-default-from": "7.16.7",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@babel/preset-env": "7.16.11",
|
|
42
42
|
"@babel/preset-react": "7.16.7",
|
|
43
43
|
"@babel/preset-typescript": "7.16.7",
|
|
44
|
-
"@babel/register": "7.17.
|
|
44
|
+
"@babel/register": "7.17.7",
|
|
45
45
|
"@babel/template": "7.16.7",
|
|
46
46
|
"@babel/traverse": "7.17.3",
|
|
47
47
|
"@babel/types": "7.17.0",
|
|
@@ -50,8 +50,11 @@
|
|
|
50
50
|
"@types/babel__parser": "7.1.1",
|
|
51
51
|
"@types/babel__template": "7.4.1",
|
|
52
52
|
"@types/babel__traverse": "7.14.2",
|
|
53
|
+
"@types/less": "3.0.3",
|
|
53
54
|
"cjs-module-lexer": "1.2.2",
|
|
54
|
-
"es-module-lexer": "0.10.
|
|
55
|
+
"es-module-lexer": "0.10.1",
|
|
56
|
+
"express": "4.17.3",
|
|
57
|
+
"less": "4.1.2"
|
|
55
58
|
},
|
|
56
59
|
"publishConfig": {
|
|
57
60
|
"access": "public"
|
|
@@ -64,13 +67,17 @@
|
|
|
64
67
|
"cjs-module-lexer",
|
|
65
68
|
"es-module-lexer",
|
|
66
69
|
"esbuild",
|
|
70
|
+
"express",
|
|
71
|
+
"less",
|
|
67
72
|
"./bundles/babel/bundle"
|
|
68
73
|
],
|
|
69
74
|
"externals": {
|
|
70
75
|
"cjs-module-lexer": "$$LOCAL",
|
|
71
76
|
"debug": "@umijs/utils/compiled/debug",
|
|
72
77
|
"esbuild": "$$LOCAL",
|
|
73
|
-
"es-module-lexer": "$$LOCAL"
|
|
78
|
+
"es-module-lexer": "$$LOCAL",
|
|
79
|
+
"express": "$$LOCAL",
|
|
80
|
+
"less": "$$LOCAL"
|
|
74
81
|
},
|
|
75
82
|
"noMinify": [
|
|
76
83
|
"./bundles/babel/bundle"
|