@modern-js/builder 2.31.2 → 2.32.0
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/CHANGELOG.md +16 -0
- package/LICENSE +1 -1
- package/dist/plugins/html.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @modern-js/builder
|
|
2
2
|
|
|
3
|
+
## 2.32.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e5a3fb4]
|
|
8
|
+
- Updated dependencies [6076166]
|
|
9
|
+
- Updated dependencies [6517032]
|
|
10
|
+
- Updated dependencies [a030aff]
|
|
11
|
+
- Updated dependencies [0cc3981]
|
|
12
|
+
- Updated dependencies [ddcdef2]
|
|
13
|
+
- Updated dependencies [3c91100]
|
|
14
|
+
- Updated dependencies [5255eba]
|
|
15
|
+
- @modern-js/utils@2.32.0
|
|
16
|
+
- @modern-js/builder-shared@2.32.0
|
|
17
|
+
- @modern-js/monorepo-utils@2.32.0
|
|
18
|
+
|
|
3
19
|
## 2.31.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/LICENSE
CHANGED
package/dist/plugins/html.js
CHANGED
|
@@ -108,7 +108,7 @@ const builderPluginHtml = () => ({
|
|
|
108
108
|
return;
|
|
109
109
|
}
|
|
110
110
|
const { removeTailSlash, applyOptionsChain } = await Promise.resolve().then(() => /* @__PURE__ */ _interop_require_wildcard._(require("@modern-js/utils")));
|
|
111
|
-
const minify = (0, _buildershared.getMinify)(isProd, config);
|
|
111
|
+
const minify = await (0, _buildershared.getMinify)(isProd, config);
|
|
112
112
|
const assetPrefix = removeTailSlash(chain.output.get("publicPath") || "");
|
|
113
113
|
const entries = chain.entryPoints.entries() || {};
|
|
114
114
|
const entryNames = Object.keys(entries);
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=14.0.0"
|
|
20
20
|
},
|
|
21
|
-
"version": "2.
|
|
21
|
+
"version": "2.32.0",
|
|
22
22
|
"jsnext:source": "./src/index.ts",
|
|
23
23
|
"types": "./dist/index.d.ts",
|
|
24
24
|
"main": "./dist/index.js",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@svgr/webpack": "8.0.1",
|
|
34
34
|
"@swc/helpers": "0.5.1",
|
|
35
|
-
"@modern-js/builder-shared": "2.
|
|
36
|
-
"@modern-js/monorepo-utils": "2.
|
|
37
|
-
"@modern-js/utils": "2.
|
|
35
|
+
"@modern-js/builder-shared": "2.32.0",
|
|
36
|
+
"@modern-js/monorepo-utils": "2.32.0",
|
|
37
|
+
"@modern-js/utils": "2.32.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/babel__core": "^7.20.0",
|
|
41
41
|
"@types/node": "^14",
|
|
42
42
|
"typescript": "^5",
|
|
43
|
-
"@modern-js/builder-webpack-provider": "2.
|
|
44
|
-
"@modern-js/builder-rspack-provider": "2.
|
|
45
|
-
"@scripts/build": "2.
|
|
46
|
-
"@scripts/vitest-config": "2.
|
|
43
|
+
"@modern-js/builder-webpack-provider": "2.32.0",
|
|
44
|
+
"@modern-js/builder-rspack-provider": "2.32.0",
|
|
45
|
+
"@scripts/build": "2.32.0",
|
|
46
|
+
"@scripts/vitest-config": "2.32.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"registry": "https://registry.npmjs.org/",
|