Files
trezor-suite/nx.json
Petr Knetl 8ac7640945 Fix/case sensitive token symbol (#8670)
* fix(suite-native): token icon identified by contract address

* fix(suite-native): token fiat rates do not depend on tokenSymbol

* fix(suite-native): token symbol does not cache upper/lower case
2023-06-13 15:28:43 +00:00

73 lines
2.1 KiB
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"options": {
"cacheableOperations": [
"lint",
"test:unit",
"type-check",
"lint:js",
"lint:styles",
"build:lib"
],
"accessToken": "NmE2NmFlYTUtN2JhZi00ZmQ3LWEyYzMtYWRkNzc3MTg0YmUyfHJlYWQ=",
"parallel": 3
}
}
},
"extends": "nx/presets/npm.json",
"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": ["{workspaceRoot}/lib", "{workspaceRoot}/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"
},
"$schema": "./node_modules/nx/schemas/nx-schema.json"
}