@umijs/bundler-utoopack 4.6.68 → 4.6.70-alpha.5
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/config.js +2 -0
- package/package.json +8 -3
package/dist/config.js
CHANGED
|
@@ -678,6 +678,7 @@ async function getProdUtooPackConfig(rawOpts) {
|
|
|
678
678
|
},
|
|
679
679
|
define,
|
|
680
680
|
nodePolyfill: true,
|
|
681
|
+
pluginRuntimeStrategy: "childProcesses",
|
|
681
682
|
mdx: !!mdx,
|
|
682
683
|
externals: getNormalizedExternals(userExternals)
|
|
683
684
|
},
|
|
@@ -832,6 +833,7 @@ async function getDevUtooPackConfig(rawOpts) {
|
|
|
832
833
|
// Windows persistent cache restore is currently unstable in utoopack dev.
|
|
833
834
|
persistentCaching: getDefaultPersistentCaching(),
|
|
834
835
|
nodePolyfill: true,
|
|
836
|
+
pluginRuntimeStrategy: "childProcesses",
|
|
835
837
|
mdx: !!mdx,
|
|
836
838
|
externals: getNormalizedExternals(userExternals),
|
|
837
839
|
...opts.config.clickToComponent ? {
|
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umijs/bundler-utoopack",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.70-alpha.5",
|
|
4
4
|
"description": "@umijs/bundler-utoopack",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/umijs/umi",
|
|
8
|
+
"directory": "packages/bundler-utoopack"
|
|
9
|
+
},
|
|
5
10
|
"main": "dist/index.js",
|
|
6
11
|
"types": "dist/index.d.ts",
|
|
7
12
|
"files": [
|
|
@@ -21,8 +26,8 @@
|
|
|
21
26
|
"resolve-url-loader": "5.0.0",
|
|
22
27
|
"sass": "1.54.0",
|
|
23
28
|
"sass-loader": "13.2.0",
|
|
24
|
-
"@umijs/bundler-utils": "4.6.
|
|
25
|
-
"@umijs/bundler-webpack": "4.6.
|
|
29
|
+
"@umijs/bundler-utils": "4.6.70-alpha.5",
|
|
30
|
+
"@umijs/bundler-webpack": "4.6.70-alpha.5"
|
|
26
31
|
},
|
|
27
32
|
"publishConfig": {
|
|
28
33
|
"access": "public"
|