Files
notesnook/nx.json

72 lines
1.5 KiB
JSON
Raw Normal View History

2022-08-26 16:12:58 +05:00
{
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"{projectRoot}/build",
"{projectRoot}/dist",
"{projectRoot}/languages"
2024-02-02 18:32:53 +05:00
],
"cache": true
2022-08-26 16:12:58 +05:00
},
"release": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
},
"build:test": {
"dependsOn": ["^build"],
2024-02-02 18:32:53 +05:00
"outputs": ["{projectRoot}/build"],
"cache": true
},
"build:beta": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
},
2022-09-22 11:33:46 +05:00
"build:desktop": {
"dependsOn": ["^build"],
2024-02-02 18:32:53 +05:00
"outputs": ["{projectRoot}/build"],
"cache": true
2022-09-22 11:33:46 +05:00
},
2022-08-26 16:12:58 +05:00
"start": {
"dependsOn": ["^build"]
2022-08-29 16:19:17 +05:00
},
"start:desktop": {
"dependsOn": ["^build"]
},
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
}
2024-02-02 18:32:53 +05:00
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": ["default"]
},
2023-12-27 10:14:20 +05:00
"parallel": 4,
2024-02-02 18:32:53 +05:00
"nxCloudAccessToken": "ZWM3ODgxNDgtNGUzZC00MjQ0LWE3MzMtZDdhMzE3ZGY2MWFlfHJlYWQ="
2022-08-26 16:12:58 +05:00
}