@rushstack/webpack4-module-minifier-plugin 0.15.0 → 0.15.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/CHANGELOG.json CHANGED
@@ -1,6 +1,29 @@
1
1
  {
2
2
  "name": "@rushstack/webpack4-module-minifier-plugin",
3
3
  "entries": [
4
+ {
5
+ "version": "0.15.1",
6
+ "tag": "@rushstack/webpack4-module-minifier-plugin_v0.15.1",
7
+ "date": "Fri, 20 Feb 2026 00:15:04 GMT",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "comment": "Add `\"node\"` condition before `\"import\"` in the `\"exports\"` map so that Node.js uses the CJS output (which handles extensionless imports), while bundlers still use ESM via `\"import\"`. Fixes https://github.com/microsoft/rushstack/issues/5644."
12
+ }
13
+ ],
14
+ "dependency": [
15
+ {
16
+ "comment": "Updating dependency \"@rushstack/module-minifier\" to `0.9.1`"
17
+ },
18
+ {
19
+ "comment": "Updating dependency \"@rushstack/worker-pool\" to `0.7.1`"
20
+ },
21
+ {
22
+ "comment": "Updating dependency \"@rushstack/heft\" to `1.2.1`"
23
+ }
24
+ ]
25
+ }
26
+ },
4
27
  {
5
28
  "version": "0.15.0",
6
29
  "tag": "@rushstack/webpack4-module-minifier-plugin_v0.15.0",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @rushstack/webpack4-module-minifier-plugin
2
2
 
3
- This log was last generated on Thu, 19 Feb 2026 00:04:53 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 20 Feb 2026 00:15:04 GMT and should not be manually modified.
4
+
5
+ ## 0.15.1
6
+ Fri, 20 Feb 2026 00:15:04 GMT
7
+
8
+ ### Patches
9
+
10
+ - Add `"node"` condition before `"import"` in the `"exports"` map so that Node.js uses the CJS output (which handles extensionless imports), while bundlers still use ESM via `"import"`. Fixes https://github.com/microsoft/rushstack/issues/5644.
4
11
 
5
12
  ## 0.15.0
6
13
  Thu, 19 Feb 2026 00:04:53 GMT
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.56.3"
8
+ "packageVersion": "7.57.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/webpack4-module-minifier-plugin",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "This plugin splits minification of webpack compilations into smaller units.",
5
5
  "main": "./lib-commonjs/index.js",
6
6
  "module": "./lib-esm/index.js",
@@ -8,11 +8,13 @@
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/webpack4-module-minifier-plugin.d.ts",
11
+ "node": "./lib-commonjs/index.js",
11
12
  "import": "./lib-esm/index.js",
12
13
  "require": "./lib-commonjs/index.js"
13
14
  },
14
15
  "./lib/*": {
15
16
  "types": "./lib-dts/*.d.ts",
17
+ "node": "./lib-commonjs/*.js",
16
18
  "import": "./lib-esm/*.js",
17
19
  "require": "./lib-commonjs/*.js"
18
20
  },
@@ -55,8 +57,8 @@
55
57
  "dependencies": {
56
58
  "@types/tapable": "1.0.6",
57
59
  "tapable": "1.1.3",
58
- "@rushstack/module-minifier": "0.9.0",
59
- "@rushstack/worker-pool": "0.7.0"
60
+ "@rushstack/module-minifier": "0.9.1",
61
+ "@rushstack/worker-pool": "0.7.1"
60
62
  },
61
63
  "devDependencies": {
62
64
  "@types/node": "20.17.19",
@@ -65,8 +67,8 @@
65
67
  "eslint": "~9.37.0",
66
68
  "webpack-sources": "~1.4.3",
67
69
  "webpack": "~4.47.0",
68
- "@rushstack/heft": "1.2.0",
69
- "local-node-rig": "1.0.0"
70
+ "local-node-rig": "1.0.0",
71
+ "@rushstack/heft": "1.2.1"
70
72
  },
71
73
  "sideEffects": [
72
74
  "lib-esm/OverrideWebpackIdentifierAllocation.js",