@nx/rspack 22.1.0-rc.5 → 22.1.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/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.1.0-rc.5",
4
+ "version": "22.1.1",
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.1.0-rc.5",
28
- "@nx/js": "22.1.0-rc.5",
29
- "@nx/module-federation": "22.1.0-rc.5",
30
- "@nx/web": "22.1.0-rc.5",
27
+ "@nx/devkit": "22.1.1",
28
+ "@nx/js": "22.1.1",
29
+ "@nx/module-federation": "22.1.1",
30
+ "@nx/web": "22.1.1",
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.1.0-rc.5",
61
- "@nx/nest": "22.1.0-rc.5"
60
+ "nx": "22.1.1",
61
+ "@nx/nest": "22.1.1"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "@module-federation/enhanced": "^0.21.2",
@@ -6,25 +6,20 @@ Update the withModuleFederation import to use @nx/module-federation/rspack.
6
6
 
7
7
  Update import paths for `withModuleFederation` and `withModuleFederationForSSR`.
8
8
 
9
- {% tabs %}
10
- {% tab label="Before" %}
9
+ ##### Before
11
10
 
12
- ```ts {% fileName="apps/shell/rspack.config.ts" %}
11
+ ```ts title="apps/shell/rspack.config.ts"
13
12
  import {
14
13
  withModuleFederation,
15
14
  withModuleFederationForSSR,
16
15
  } from '@nx/rspack/module-federation';
17
16
  ```
18
17
 
19
- {% /tab %}
20
- {% tab label="After" %}
18
+ ##### After
21
19
 
22
- ```ts {% fileName="apps/shell/rspack.config.ts" %}
20
+ ```ts title="apps/shell/rspack.config.ts"
23
21
  import {
24
22
  withModuleFederation,
25
23
  withModuleFederationForSSR,
26
24
  } from '@nx/module-federation/rspack';
27
25
  ```
28
-
29
- {% /tab %}
30
- {% /tabs %}
@@ -4,25 +4,20 @@ If workspace includes Module Federation projects, ensure the new `@nx/module-fed
4
4
 
5
5
  #### Sample Code Changes
6
6
 
7
- {% tabs %}
8
- {% tab label="Before" %}
7
+ ##### Before
9
8
 
10
- ```json {% fileName="package.json" %}
9
+ ```json title="package.json"
11
10
  {
12
11
  "dependencies": {}
13
12
  }
14
13
  ```
15
14
 
16
- {% /tab %}
17
- {% tab label="After" %}
15
+ ##### After
18
16
 
19
- ```json {% fileName="package.json" %}
17
+ ```json title="package.json"
20
18
  {
21
19
  "dependencies": {
22
20
  "@nx/module-federation": "20.3.0"
23
21
  }
24
22
  }
25
23
  ```
26
-
27
- {% /tab %}
28
- {% /tabs %}