Files
cypress/nx.json
Bill Glesias c8439b2856 chore: disable nx caching and add web extension docs (#30449)
* chore: do not cache the nx functions as it is too difficult to deterministically bust the cache [run ci]

* chore: update extension docs for debugging [run ci]
2024-10-23 17:36:33 -04:00

52 lines
1.1 KiB
JSON

{
"targetDefaults": {
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.js"
],
"cache": false
},
"check-ts": {
"inputs": [
"default",
"sharedGlobals"
],
"cache": false
},
"build": {
"dependsOn": [
"^build"
],
"cache": false
},
"build-prod": {
"dependsOn": [
"^build-prod"
],
"cache": false
}
},
"namedInputs": {
"sharedGlobals": [
"{workspaceRoot}/scripts"
],
"default": [
"{projectRoot}/**/*",
"sharedGlobals",
"{workspaceRoot}/.circleci/cache-version.txt"
],
"production": [
"default",
"!{projectRoot}/**/*.spec.ts",
"!{projectRoot}/**/*.md",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/.mocharc.{js,json}",
"!{projectRoot/cypress.config.{ts,js}",
"!{projectRoot/**/*.cy.ts"
]
},
"nxCloudAccessToken": "ZmNlNjA0YzAtNTM1NS00MDIwLWFlMWItNWYxYzNiMjQ4N2VkfHJlYWQtb25seQ=="
}