@esmx/rspack 3.0.0-rc.14 → 3.0.0-rc.17

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.mjs CHANGED
@@ -60,6 +60,9 @@ export function createRspackConfig(esmx, buildTarget, options) {
60
60
  }
61
61
  })(),
62
62
  environment: {
63
+ dynamicImport: true,
64
+ dynamicImportInWorker: true,
65
+ module: true,
63
66
  nodePrefixForCoreModules: true
64
67
  }
65
68
  },
package/package.json CHANGED
@@ -63,10 +63,10 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@esmx/import": "3.0.0-rc.14",
67
- "@esmx/rspack-module-link-plugin": "3.0.0-rc.14",
66
+ "@esmx/import": "3.0.0-rc.17",
67
+ "@esmx/rspack-module-link-plugin": "3.0.0-rc.17",
68
68
  "@npmcli/arborist": "^9.0.1",
69
- "@rspack/core": "^1.3.1",
69
+ "@rspack/core": "1.3.10",
70
70
  "css-loader": "^7.1.2",
71
71
  "less-loader": "^12.2.0",
72
72
  "node-polyfill-webpack-plugin": "^4.1.0",
@@ -79,8 +79,8 @@
79
79
  },
80
80
  "devDependencies": {
81
81
  "@biomejs/biome": "1.9.4",
82
- "@esmx/core": "3.0.0-rc.14",
83
- "@esmx/lint": "3.0.0-rc.14",
82
+ "@esmx/core": "3.0.0-rc.17",
83
+ "@esmx/lint": "3.0.0-rc.17",
84
84
  "@gez/lint": "3.0.0-rc.9",
85
85
  "@types/node": "22.13.10",
86
86
  "@types/npmcli__arborist": "^5.6.11",
@@ -93,7 +93,7 @@
93
93
  "unbuild": "2.0.0",
94
94
  "vitest": "3.0.8"
95
95
  },
96
- "version": "3.0.0-rc.14",
96
+ "version": "3.0.0-rc.17",
97
97
  "type": "module",
98
98
  "private": false,
99
99
  "exports": {
@@ -112,5 +112,5 @@
112
112
  "template",
113
113
  "public"
114
114
  ],
115
- "gitHead": "e0349256d64a50d86be8a585a498bc4278014324"
115
+ "gitHead": "5304ac6ef7a3b5d3bcb2db59cceb3f35723c2409"
116
116
  }
package/src/config.ts CHANGED
@@ -88,6 +88,9 @@ export function createRspackConfig(
88
88
  }
89
89
  })(),
90
90
  environment: {
91
+ dynamicImport: true,
92
+ dynamicImportInWorker: true,
93
+ module: true,
91
94
  nodePrefixForCoreModules: true
92
95
  }
93
96
  },