Skip to content

Commit

Permalink
chore(qwik-nx): misc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-stepanenko committed Nov 4, 2023
1 parent 235c3be commit bb0e79e
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 26 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ This plugin supports Nx migrations and provides necessary version and code updat

| qwik-nx version | Nx version |
| ------------------ | ---------- |
| ^2.0.0 | ^17.0.0 |
| ^1.1.0 | ^16.8.0 |
| ^1.0.0 | ^16.0.0 |
| ^0.16.0 | ^16.0.0 |
Expand Down
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 @@ -22,10 +22,10 @@ describe('misc checks', () => {

expect(packageJson.peerDependencies).toBeUndefined();
expect(packageJson.dependencies).toEqual({
'@nx/devkit': '^16.0.0',
'@nx/js': '^16.0.0',
'@nx/eslint': '^16.0.0',
'@nx/vite': '^16.0.0',
'@nx/devkit': '^17.0.0',
'@nx/js': '^17.0.0',
'@nx/eslint': '^17.0.0',
'@nx/vite': '^17.0.0',
});
},
DEFAULT_E2E_TIMEOUT
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"chalk": "^4.1.0",
"commitizen": "^4.2.5",
"commitlint": "^17.3.0",
"create-nx-workspace": "16.0.0",
"create-nx-workspace": "17.0.3",
"cz-conventional-changelog": "^3.3.0",
"enquirer": "2.3.6",
"eslint": "8.46.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-qwik-nx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"homepage": "https://github.com/qwikifiers/qwik-nx",
"dependencies": {
"create-nx-workspace": "^16.0.0"
"create-nx-workspace": "^17.0.0"
},
"publishConfig": {
"access": "public",
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",
"dependencies": {
"@nx/devkit": "^16.0.0",
"@nx/js": "^16.0.0",
"@nx/vite": "^16.0.0",
"@nx/eslint": "^16.0.0"
"@nx/devkit": "^17.0.0",
"@nx/js": "^17.0.0",
"@nx/vite": "^17.0.0",
"@nx/eslint": "^17.0.0"
},
"nx-migrations": {
"migrations": "./migrations.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function getTestTarget(
): TargetConfiguration {
return {
executor: '@nx/vite:test',
outputs: [`${params.offsetFromRoot}coverage/${params.projectRoot}`],
outputs: ['{options.reportsDirectory}'],
options: {
passWithNoTests: true,
reportsDirectory: `${params.offsetFromRoot}coverage/${params.projectRoot}`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function getTestTarget(
): TargetConfiguration {
return {
executor: '@nx/vite:test',
outputs: [`${params.offsetFromRoot}/coverage/${params.projectRoot}`],
outputs: ['{options.reportsDirectory}'],
options: {
passWithNoTests: true,
reportsDirectory: `${params.offsetFromRoot}coverage/${params.projectRoot}`,
Expand Down
6 changes: 3 additions & 3 deletions packages/qwik-nx/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// qwik packages
export const qwikVersion = '~1.2.12';
export const qwikCityVersion = '~1.2.12';
export const qwikEslintPluginVersion = '~1.2.12';
export const qwikVersion = '~1.2.17';
export const qwikCityVersion = '~1.2.17';
export const qwikEslintPluginVersion = '~1.2.17';

// css preprocessors
export const sassVersion = '~1.56.1';
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb0e79e

Please sign in to comment.