Skip to content

Commit

Permalink
chore(qwik-nx): add nx 18 as supported version (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-stepanenko authored Mar 2, 2024
1 parent 75cbc99 commit 74c9605
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions e2e/qwik-nx-e2e/tests/chore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ describe('misc checks', () => {
expect(packageJson.dependencies).toBeUndefined();
expect(packageJson.devDependencies).toBeUndefined();
expect(packageJson.peerDependencies).toEqual({
'@nx/devkit': '^17.0.0',
'@nx/js': '^17.0.0',
'@nx/eslint': '^17.0.0',
'@nx/vite': '^17.0.0',
'@nx/devkit': '^17.0.0 || ^18.0.0',
'@nx/js': '^17.0.0 || ^18.0.0',
'@nx/eslint': '^17.0.0 || ^18.0.0',
'@nx/vite': '^17.0.0 || ^18.0.0',
});
},
DEFAULT_E2E_TIMEOUT
Expand Down
8 changes: 4 additions & 4 deletions packages/qwik-nx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"generators": "./generators.json",
"executors": "./executors.json",
"peerDependencies": {
"@nx/devkit": "^17.0.0",
"@nx/js": "^17.0.0",
"@nx/vite": "^17.0.0",
"@nx/eslint": "^17.0.0"
"@nx/devkit": "^17.0.0 || ^18.0.0",
"@nx/js": "^17.0.0 || ^18.0.0",
"@nx/vite": "^17.0.0 || ^18.0.0",
"@nx/eslint": "^17.0.0 || ^18.0.0"
},
"nx-migrations": {
"migrations": "./migrations.json"
Expand Down

0 comments on commit 74c9605

Please sign in to comment.