Skip to content

Commit fa5be7e

Browse files
committed
feat: add support to Nx v18
1 parent edb7d5e commit fa5be7e

File tree

6 files changed

+532
-275
lines changed

6 files changed

+532
-275
lines changed

.github/workflows/backwards-compatibility-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
backwards-compatibility-test:
77
strategy:
88
matrix:
9-
nx-version: ['', '16.10.0'] # '' means current workspace version
9+
nx-version: ['', '17.3.2', '16.10.0'] # '' means current workspace version
1010
uses: ./.github/workflows/integration-test-nx-workspace.yml
1111
with:
1212
nx-version: ${{matrix.nx-version}}

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,12 @@ For testing: Run through without making any changes. Execute with `--dry-run`, a
227227

228228
## Compatibility overview with Nx
229229

230-
| Version | Nx Workspace Version |
231-
| ------- | ---------------------- |
232-
| v8.0.0 | `^16.0.0 \|\| ^17.0.0` |
233-
| v7.1.0 | `^16.0.0 \|\| ^17.0.0` |
234-
| v7.0.1 | `^16.0.0` |
230+
| Version | Nx Workspace Version |
231+
| ------- | ----------------------------------- |
232+
| v8.1.0 | `^16.0.0 \|\| ^17.0.0 \|\| ^18.0.0` |
233+
| v8.0.0 | `^16.0.0 \|\| ^17.0.0` |
234+
| v7.1.0 | `^16.0.0 \|\| ^17.0.0` |
235+
| v7.0.1 | `^16.0.0` |
235236

236237
## 📁 Configuration File <a name="configuration-file"></a>
237238

nx.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"affected": {
3-
"defaultBase": "main"
4-
},
52
"tasksRunnerOptions": {
63
"default": {
74
"runner": "@nx/workspace/tasks-runners/default",
@@ -54,5 +51,7 @@
5451
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
5552
"cache": true
5653
}
57-
}
54+
},
55+
"useInferencePlugins": false,
56+
"defaultBase": "main"
5857
}

0 commit comments

Comments
 (0)