Skip to content

Commit 13d03b4

Browse files
committed
chore: fix caching settings
1 parent 458d500 commit 13d03b4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

nx.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
},
200200
"code-pushup-typescript": {
201201
"cache": true,
202-
"inputs": ["code-pushup-inputs"],
202+
"inputs": ["code-pushup-inputs", "typecheck-typescript-inputs"],
203203
"outputs": ["{projectRoot}/.code-pushup/typescript/runner-output.json"],
204204
"executor": "nx:run-commands",
205205
"options": {
@@ -251,12 +251,12 @@
251251
"test-vitest-inputs": ["default", { "externalDependencies": ["vitest"] }],
252252
"lint-eslint-inputs": [
253253
"default",
254-
"^production",
254+
"production",
255255
{ "externalDependencies": ["eslint"] }
256256
],
257257
"typecheck-typescript-inputs": [
258258
"default",
259-
"^production",
259+
"production",
260260
{ "externalDependencies": ["typescript"] }
261261
],
262262
"code-pushup-inputs": [

project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"--verbose",
2020
"--config={projectRoot}/code-pushup.config.ts",
2121
"--cache.read",
22-
"--persist.outputDir={projectRoot}/.code-pushup"
22+
"--persist.outputDir={projectRoot}/.code-pushup",
23+
"--upload.project={projectName}"
2324
],
2425
"env": {
2526
"NODE_OPTIONS": "--import tsx",

0 commit comments

Comments
 (0)