Files
notesnook/nx.json

60 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2022-08-26 16:12:58 +05:00
{
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
2022-08-26 16:12:58 +05:00
"options": {
"cacheableOperations": ["build", "build:test", "build:desktop"],
"accessToken": "ZWM3ODgxNDgtNGUzZC00MjQ0LWE3MzMtZDdhMzE3ZGY2MWFlfHJlYWQ="
2022-08-26 16:12:58 +05:00
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"{projectRoot}/build",
"{projectRoot}/dist",
"{projectRoot}/languages"
]
2022-08-26 16:12:58 +05:00
},
"build:test": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
},
2022-09-22 11:33:46 +05:00
"build:desktop": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
},
2022-08-26 16:12:58 +05:00
"start": {
"dependsOn": ["^build"]
2022-08-29 16:19:17 +05:00
},
2022-09-09 00:47:40 +05:00
"test:e2e": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
2022-08-29 16:19:17 +05:00
"run-android": {
"dependsOn": ["^build"]
},
"run-ios": {
"dependsOn": ["^build"]
},
"build-ios": {
"dependsOn": ["^build"]
},
"build-android": {
"dependsOn": ["^build"]
2022-09-20 14:45:41 +05:00
},
"release-android": {
"dependsOn": ["^build"]
},
"release-android-bundle": {
"dependsOn": ["^build"]
2022-09-22 17:38:41 +05:00
},
"release-ios": {
"dependsOn": ["^build"]
2022-08-26 16:12:58 +05:00
}
}
}