@nx/rspack 20.8.0-rc.0 → 20.8.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/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": "20.8.0-rc.0",
4
+ "version": "20.8.0",
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/js": "20.8.0-rc.0",
28
- "@nx/devkit": "20.8.0-rc.0",
29
- "@nx/web": "20.8.0-rc.0",
30
- "@nx/module-federation": "20.8.0-rc.0",
27
+ "@nx/js": "20.8.0",
28
+ "@nx/devkit": "20.8.0",
29
+ "@nx/web": "20.8.0",
30
+ "@nx/module-federation": "20.8.0",
31
31
  "@phenomnomnominal/tsquery": "~5.0.1",
32
32
  "@rspack/core": "^1.1.5",
33
33
  "@rspack/dev-server": "^1.0.9",
@@ -96,9 +96,7 @@ async function createRspackTargets(configFilePath, projectRoot, options, context
96
96
  const isTsConfig = ['.ts', '.cts', '.mts'].includes((0, path_1.extname)(configFilePath));
97
97
  if (isTsConfig) {
98
98
  // https://rspack.dev/config/#using-ts-node
99
- const existingValue = process.env['TS_NODE_COMPILER_OPTIONS'];
100
99
  env['TS_NODE_COMPILER_OPTIONS'] = JSON.stringify({
101
- ...(existingValue ? JSON.parse(existingValue) : {}),
102
100
  module: 'CommonJS',
103
101
  moduleResolution: 'Node10',
104
102
  customConditions: null,