mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
* 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
73 lines
2.1 KiB
JSON
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"
|
|
}
|