Skip to content

Commit

Permalink
chore: nx repair
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Nov 21, 2024
1 parent 3548417 commit 60a42e5
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 26 deletions.
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
*.
dist
node_modules
coverage
coverage
/.nx/cache
/.nx/workspace-data
6 changes: 3 additions & 3 deletions apps/qwik-demo-app-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/qwik-demo-app-e2e/src",
"projectType": "application",
"tags": [],
"implicitDependencies": ["qwik-demo-app"],
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
Expand All @@ -24,7 +26,5 @@
"lintFilePatterns": ["packages/qwik-demo-app-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["qwik-demo-app"]
}
}
6 changes: 3 additions & 3 deletions apps/qwik-demo-app/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "packages/qwik-demo-app/src",
"tags": [],
"targets": {
"build": {
"executor": "qwik-nx:build",
Expand Down Expand Up @@ -45,7 +46,7 @@
},
"test": {
"executor": "@nrwl/vite:test",
"outputs": ["../../coverage/packages/qwik-demo-app"],
"outputs": ["../coverage/packages/qwik-demo-app"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../coverage/packages/qwik-demo-app"
Expand All @@ -72,6 +73,5 @@
"lintFilePatterns": ["packages/qwik-demo-app/**/*.{ts,tsx,js,jsx}"]
}
}
},
"tags": []
}
}
29 changes: 13 additions & 16 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,30 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"],
"accessToken": "ZTkxZTM2YzMtZmEwYS00NGQ4LTk0YzEtZmJiZDEzNzYzMTNjfHJlYWQtd3JpdGU="
}
}
},
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "qwikdev",
"workspaceLayout": {
"appsDir": "apps",
"libsDir": "packages"
},
"affected": {
"defaultBase": "main"
},
"targetDefaults": {
"test": {
"inputs": ["default", "^default"]
"inputs": ["default", "^default"],
"cache": true
},
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore"
]
],
"cache": true
},
"build": {
"cache": true
},
"e2e": {
"cache": true
}
}
},
"nxCloudAccessToken": "ZTkxZTM2YzMtZmEwYS00NGQ4LTk0YzEtZmJiZDEzNzYzMTNjfHJlYWQtd3JpdGU=",
"defaultBase": "main"
}
6 changes: 3 additions & 3 deletions packages/qwik-image/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/qwik-image/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/vite:build",
Expand All @@ -20,7 +21,7 @@
},
"test": {
"executor": "@nrwl/vite:test",
"outputs": ["../..//coverage/packages/qwik-image"],
"outputs": ["../coverage/packages/qwik-image"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../coverage/packages/qwik-image"
Expand Down Expand Up @@ -64,6 +65,5 @@
"notes": "${notes}"
}
}
},
"tags": []
}
}

0 comments on commit 60a42e5

Please sign in to comment.