Files
trezor-suite/nx.json
Daniel Suchý 0c3ab019bc fix: fix patch-package (#6572)
* fix: fix patch-package

* chore(repo): Nx imporovements
2022-10-20 10:51:43 +02:00

72 lines
2.0 KiB
JSON

{
"extends": "nx/presets/npm.json",
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": [
"lint",
"test:unit",
"type-check",
"lint:js",
"lint:styles",
"build:lib"
],
"accessToken": "NmE2NmFlYTUtN2JhZi00ZmQ3LWEyYzMtYWRkNzc3MTg0YmUyfHJlYWQ=",
"parallel": 3
}
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"prod": ["!{projectRoot}/**/*.test.{ts,tsx}"]
},
"targetDefaults": {
"build:lib": {
"dependsOn": ["^build:lib"],
"inputs": [
"default",
"^prod",
"{workspaceRoot}/tsconfig.json",
"{workspaceRoot}/tsconfig.aliases.json",
"{workspaceRoot}/tsconfig.lib.json"
],
"outputs": ["./lib", "./build"]
},
"type-check": {
"dependsOn": ["^build:lib", "^type-check"],
"inputs": [
"default",
"^prod",
"{workspaceRoot}/tsconfig.json",
"{workspaceRoot}/tsconfig.aliases.json",
"{workspaceRoot}/tsconfig.lib.json"
]
},
"test:unit": {
"dependsOn": ["^build:lib"],
"inputs": [
"default",
"^prod",
"{workspaceRoot}/jest.config.base.js",
"{workspaceRoot}/jest.config.native.js"
]
},
"lint:js": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.js"]
},
"lint:styles": {
"inputs": ["default"]
}
},
"implicitDependencies": {
"package.json": "*",
"nx.json": "*",
".yarnrc.yml": "*",
"patches/*.patch": "*"
},
"affected": {
"defaultBase": "origin/develop"
}
}