Skip to content

Commit b97d16c

Browse files
fix(qwik-nx): lock nx minor version (#221)
1 parent 9033e0c commit b97d16c

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,18 @@ This plugin supports Nx migrations and provides necessary version and code updat
9191

9292
## qwik-nx & Nx Compatibility Chart
9393

94-
| qwik-nx version | Nx version |
95-
| ------------------ | ---------- |
96-
| ^2.0.0 | ^17.0.0 |
97-
| ^1.1.0 | ^16.8.0 |
98-
| ^1.0.0 | ^16.0.0 |
99-
| ^0.16.0 | ^16.0.0 |
100-
| >= 0.12.0 < 0.16.0 | ^15.8.0 |
101-
| ~0.10.0, ~0.11.0 | ~15.7.2 |
102-
| >= 0.6.0 < 0.10.0 | ~15.6.0 |
103-
| ~0.5.0 | ~15.5.0 |
104-
| ~0.4.0 | ~15.4.0 |
105-
| <=0.4.0 | ^15.0.0 |
94+
| qwik-nx version | Nx version |
95+
| ------------------ | -------------------- |
96+
| ~2.0.0 | ~17.0.0 \|\| ~17.1.0 |
97+
| ^1.1.0 | ^16.8.0 |
98+
| ^1.0.0 | ^16.0.0 |
99+
| ^0.16.0 | ^16.0.0 |
100+
| >= 0.12.0 < 0.16.0 | ^15.8.0 |
101+
| ~0.10.0, ~0.11.0 | ~15.7.2 |
102+
| >= 0.6.0 < 0.10.0 | ~15.6.0 |
103+
| ~0.5.0 | ~15.5.0 |
104+
| ~0.4.0 | ~15.4.0 |
105+
| <=0.4.0 | ^15.0.0 |
106106

107107
We will provide support for Nx 15 with critical bug fixes and minor features for a while. If you're using [email protected] or higher, you can stick to [email protected].
108108

e2e/qwik-nx-e2e/tests/chore.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ describe('misc checks', () => {
2222

2323
expect(packageJson.peerDependencies).toBeUndefined();
2424
expect(packageJson.dependencies).toEqual({
25-
'@nx/devkit': '^17.0.0',
26-
'@nx/js': '^17.0.0',
27-
'@nx/eslint': '^17.0.0',
28-
'@nx/vite': '^17.0.0',
25+
'@nx/devkit': '>=17.0.0 <17.2.0',
26+
'@nx/js': '>=17.0.0 <17.2.0',
27+
'@nx/eslint': '>=17.0.0 <17.2.0',
28+
'@nx/vite': '>=17.0.0 <17.2.0',
2929
});
3030
},
3131
DEFAULT_E2E_TIMEOUT

packages/qwik-nx/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"generators": "./generators.json",
2323
"executors": "./executors.json",
2424
"dependencies": {
25-
"@nx/devkit": "^17.0.0",
26-
"@nx/js": "^17.0.0",
27-
"@nx/vite": "^17.0.0",
28-
"@nx/eslint": "^17.0.0"
25+
"@nx/devkit": ">=17.0.0 <17.2.0",
26+
"@nx/js": ">=17.0.0 <17.2.0",
27+
"@nx/vite": ">=17.0.0 <17.2.0",
28+
"@nx/eslint": ">=17.0.0 <17.2.0"
2929
},
3030
"nx-migrations": {
3131
"migrations": "./migrations.json"

0 commit comments

Comments
 (0)