Skip to content

Commit 4913029

Browse files
committed
fix(qwik-nx): updated dependencies and fixed issue on normalize utils
1 parent 796b050 commit 4913029

File tree

3 files changed

+414
-3334
lines changed

3 files changed

+414
-3334
lines changed

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
"@commitlint/config-angular": "^17.8.1",
2525
"@commitlint/config-conventional": "^17.8.1",
2626
"@jscutlery/semver": "^4.2.0",
27-
"@nx/cypress": "20.3.0",
28-
"@nx/devkit": "20.3.0",
29-
"@nx/eslint": "20.3.0",
30-
"@nx/eslint-plugin": "20.3.0",
31-
"@nx/jest": "20.3.0",
32-
"@nx/js": "20.3.0",
33-
"@nx/playwright": "20.3.0",
34-
"@nx/plugin": "20.3.0",
35-
"@nx/storybook": "20.3.0",
36-
"@nx/vite": "20.3.0",
37-
"@nx/workspace": "20.3.0",
27+
"@nx/cypress": "20.7.1",
28+
"@nx/devkit": "20.7.1",
29+
"@nx/eslint": "20.7.1",
30+
"@nx/eslint-plugin": "20.7.1",
31+
"@nx/jest": "20.7.1",
32+
"@nx/js": "20.7.1",
33+
"@nx/playwright": "20.7.1",
34+
"@nx/plugin": "20.7.1",
35+
"@nx/storybook": "20.7.1",
36+
"@nx/vite": "20.7.1",
37+
"@nx/workspace": "20.7.1",
3838
"@swc-node/register": "1.9.2",
3939
"@swc/cli": "0.3.12",
4040
"@swc/core": "1.5.7",
@@ -66,7 +66,7 @@
6666
"jsonc-eslint-parser": "^2.4.0",
6767
"kill-port": "2.0.1",
6868
"ngx-deploy-npm": "8.0.1",
69-
"nx": "20.3.0",
69+
"nx": "20.7.1",
7070
"prettier": "^2.8.8",
7171
"pretty-quick": "^3.3.1",
7272
"semver": "7.6.0",

packages/qwik-nx/src/generators/application/utils/normalize-options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { getRelativePathToRootTsConfig } from '@nx/js';
33
import { NormalizedSchema, QwikAppGeneratorSchema } from '../schema';
44
import {
55
determineProjectNameAndRootOptions,
6-
ensureProjectName,
6+
ensureRootProjectName,
77
} from '@nx/devkit/src/generators/project-name-and-root-utils';
88

99
export async function normalizeOptions(
1010
host: Tree,
1111
options: QwikAppGeneratorSchema
1212
): Promise<NormalizedSchema> {
13-
await ensureProjectName(host, options, 'application');
13+
await ensureRootProjectName(options, 'application');
1414

1515
const { projectName: appProjectName, projectRoot: appProjectRoot } =
1616
await determineProjectNameAndRootOptions(host, {

0 commit comments

Comments
 (0)