Skip to content

Commit

Permalink
skip module cache
Browse files Browse the repository at this point in the history
  • Loading branch information
nirgur committed Jul 23, 2024
1 parent cddce0f commit 606befd
Showing 1 changed file with 32 additions and 8 deletions.
40 changes: 32 additions & 8 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,24 @@
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "descope",
"defaultBase": "origin/main",
"affected": {
"defaultBase": "origin/main"
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
],
"cache": true
},
"lint": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
Expand All @@ -18,8 +28,14 @@
"cache": true
},
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"dependsOn": ["^build"],
"inputs": [
"default",
"^production",
"{workspaceRoot}/jest.preset.js"
],
"dependsOn": [
"^build"
],
"cache": true
},
"test:e2e": {
Expand All @@ -28,12 +44,17 @@
"^production",
"{projectRoot}/playwright.config.ts"
],
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"cache": true
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/.eslintrc.json",
Expand All @@ -43,6 +64,9 @@
],
"sharedGlobals": []
},
"workspaceLayout": { "appsDir": "packages/**", "libsDir": "packages/**" },
"workspaceLayout": {
"appsDir": "packages/**",
"libsDir": "packages/**"
},
"nxCloudAccessToken": "OTk2MTNiMTQtODRiMi00OTVkLWE5MGQtNjMyY2ZkY2I0MDhlfHJlYWQtd3JpdGU="
}

0 comments on commit 606befd

Please sign in to comment.