-
Notifications
You must be signed in to change notification settings - Fork 2
/
nx.json
49 lines (49 loc) · 1.1 KB
/
nx.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extends": "nx/presets/npm.json",
"affected": {
"defaultBase": "main"
},
"workspaceLayout": {
"appsDir": "apps",
"libsDir": "packages"
},
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"options": {
"accessToken": "ZjZlMjQ5ZjctZjM0Zi00ZDIyLTgyYWMtOWQxOGZhYWI1ZjJkfHJlYWQtd3JpdGU=",
"cacheableOperations": ["build"]
}
},
"vercel": {
"runner": "@vercel/remote-nx",
"options": {
"cacheableOperations": ["build"],
"cacheDirectory": "/tmp/nx-cache",
"token": "<token>",
"teamId": "<teamId>"
}
}
},
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build"],
"outputs": [
"{projectRoot}/build",
"{projectRoot}/dist",
"{projectRoot}/.next",
"{projectRoot}/storybook-static"
]
},
"test": {
"cache": true,
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^build"],
"cache": true
}
},
"nxCloudAccessToken": "ZjZlMjQ5ZjctZjM0Zi00ZDIyLTgyYWMtOWQxOGZhYWI1ZjJkfHJlYWQtd3JpdGU="
}