Skip to content

Commit 60a42e5

Browse files
committed
chore: nx repair
1 parent 3548417 commit 60a42e5

File tree

5 files changed

+25
-26
lines changed

5 files changed

+25
-26
lines changed

.prettierignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@
55
*.
66
dist
77
node_modules
8-
coverage
8+
coverage
9+
/.nx/cache
10+
/.nx/workspace-data

apps/qwik-demo-app-e2e/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "packages/qwik-demo-app-e2e/src",
55
"projectType": "application",
6+
"tags": [],
7+
"implicitDependencies": ["qwik-demo-app"],
68
"targets": {
79
"e2e": {
810
"executor": "@nrwl/cypress:cypress",
@@ -24,7 +26,5 @@
2426
"lintFilePatterns": ["packages/qwik-demo-app-e2e/**/*.{js,ts}"]
2527
}
2628
}
27-
},
28-
"tags": [],
29-
"implicitDependencies": ["qwik-demo-app"]
29+
}
3030
}

apps/qwik-demo-app/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
55
"sourceRoot": "packages/qwik-demo-app/src",
6+
"tags": [],
67
"targets": {
78
"build": {
89
"executor": "qwik-nx:build",
@@ -45,7 +46,7 @@
4546
},
4647
"test": {
4748
"executor": "@nrwl/vite:test",
48-
"outputs": ["../../coverage/packages/qwik-demo-app"],
49+
"outputs": ["../coverage/packages/qwik-demo-app"],
4950
"options": {
5051
"passWithNoTests": true,
5152
"reportsDirectory": "../../coverage/packages/qwik-demo-app"
@@ -72,6 +73,5 @@
7273
"lintFilePatterns": ["packages/qwik-demo-app/**/*.{ts,tsx,js,jsx}"]
7374
}
7475
}
75-
},
76-
"tags": []
76+
}
7777
}

nx.json

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,30 @@
11
{
2-
"tasksRunnerOptions": {
3-
"default": {
4-
"runner": "@nrwl/nx-cloud",
5-
"options": {
6-
"cacheableOperations": ["build", "lint", "test", "e2e"],
7-
"accessToken": "ZTkxZTM2YzMtZmEwYS00NGQ4LTk0YzEtZmJiZDEzNzYzMTNjfHJlYWQtd3JpdGU="
8-
}
9-
}
10-
},
112
"extends": "nx/presets/npm.json",
123
"$schema": "./node_modules/nx/schemas/nx-schema.json",
13-
"npmScope": "qwikdev",
144
"workspaceLayout": {
155
"appsDir": "apps",
166
"libsDir": "packages"
177
},
18-
"affected": {
19-
"defaultBase": "main"
20-
},
218
"targetDefaults": {
229
"test": {
23-
"inputs": ["default", "^default"]
10+
"inputs": ["default", "^default"],
11+
"cache": true
2412
},
2513
"lint": {
2614
"inputs": [
2715
"default",
2816
"{workspaceRoot}/.eslintrc.json",
2917
"{workspaceRoot}/.eslintignore"
30-
]
18+
],
19+
"cache": true
20+
},
21+
"build": {
22+
"cache": true
23+
},
24+
"e2e": {
25+
"cache": true
3126
}
32-
}
27+
},
28+
"nxCloudAccessToken": "ZTkxZTM2YzMtZmEwYS00NGQ4LTk0YzEtZmJiZDEzNzYzMTNjfHJlYWQtd3JpdGU=",
29+
"defaultBase": "main"
3330
}

packages/qwik-image/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "packages/qwik-image/src",
55
"projectType": "library",
6+
"tags": [],
67
"targets": {
78
"build": {
89
"executor": "@nrwl/vite:build",
@@ -20,7 +21,7 @@
2021
},
2122
"test": {
2223
"executor": "@nrwl/vite:test",
23-
"outputs": ["../..//coverage/packages/qwik-image"],
24+
"outputs": ["../coverage/packages/qwik-image"],
2425
"options": {
2526
"passWithNoTests": true,
2627
"reportsDirectory": "../../coverage/packages/qwik-image"
@@ -64,6 +65,5 @@
6465
"notes": "${notes}"
6566
}
6667
}
67-
},
68-
"tags": []
68+
}
6969
}

0 commit comments

Comments
 (0)