@nx/rspack 22.2.2 → 22.3.0-canary.20251211-205daee
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/rspack",
|
|
3
3
|
"description": "The Nx Plugin for Rspack contains executors and generators that support building applications using Rspack.",
|
|
4
|
-
"version": "22.
|
|
4
|
+
"version": "22.3.0-canary.20251211-205daee",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"generators": "./generators.json",
|
|
25
25
|
"executors": "./executors.json",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nx/devkit": "22.
|
|
28
|
-
"@nx/js": "22.
|
|
29
|
-
"@nx/module-federation": "22.
|
|
30
|
-
"@nx/web": "22.
|
|
27
|
+
"@nx/devkit": "22.3.0-canary.20251211-205daee",
|
|
28
|
+
"@nx/js": "22.3.0-canary.20251211-205daee",
|
|
29
|
+
"@nx/module-federation": "22.3.0-canary.20251211-205daee",
|
|
30
|
+
"@nx/web": "22.3.0-canary.20251211-205daee",
|
|
31
31
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
32
32
|
"@rspack/core": "^1.5.2",
|
|
33
33
|
"@rspack/dev-server": "^1.1.4",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"webpack-node-externals": "^3.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"nx": "22.
|
|
61
|
-
"@nx/nest": "22.
|
|
60
|
+
"nx": "22.3.0-canary.20251211-205daee",
|
|
61
|
+
"@nx/nest": "22.3.0-canary.20251211-205daee"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@module-federation/enhanced": "^0.21.2",
|
|
@@ -228,11 +228,9 @@ function applyNxDependentConfig(options, config, { useNormalizedEntry } = {}) {
|
|
|
228
228
|
};
|
|
229
229
|
// When using TS solution setup, enable build mode to generate declaration files
|
|
230
230
|
// This prevents TS6305 errors when declaration files are expected but missing
|
|
231
|
-
// from module federation remote imports
|
|
232
|
-
// so that tsc builds are not affected.
|
|
231
|
+
// from module federation remote imports
|
|
233
232
|
if (isUsingTsSolution) {
|
|
234
233
|
pluginConfig.typescript.build = true;
|
|
235
|
-
pluginConfig.typescript.mode = 'readonly';
|
|
236
234
|
}
|
|
237
235
|
plugins.push(new TsCheckerRspackPlugin(pluginConfig));
|
|
238
236
|
}
|