-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnx.json
More file actions
96 lines (96 loc) · 2.2 KB
/
nx.json
File metadata and controls
96 lines (96 loc) · 2.2 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"sharedGlobals": [],
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"{projectRoot}/**/*",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/playwright.config.ts",
"!{projectRoot}/tsconfig.test.json",
"!{projectRoot}/tsconfig.check.json",
"!{projectRoot}/*.tsbuildinfo",
"!{projectRoot}/.storybook/**/*",
"!{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
"!{workspaceRoot}/.oxlintrc.json",
"sharedGlobals"
],
"dev": [
{
"runtime": "node -v"
},
{
"env": "NODE_ENV"
},
{
"env": "STAGE"
},
{
"env": "ANALYZE"
},
{
"env": "MINIFY"
},
{
"env": "CI"
}
]
},
"targetDefaults": {
"serve": {
"inputs": ["production", "^production", "dev"],
"cache": false,
"continuous": true
},
"dev": {
"inputs": ["production", "^production", "dev"],
"cache": false,
"continuous": true
},
"build": {
"dependsOn": [],
"inputs": ["production", "^production", "dev"],
"cache": true
},
"app-build": {
"dependsOn": [],
"inputs": ["production", "^production", "dev"],
"cache": true
},
"app-deploy": {
"inputs": ["production", "^production"],
"cache": false
},
"deploy": {
"inputs": ["production", "^production"],
"cache": false
},
"db": {
"inputs": ["production", "^production"],
"cache": false
},
"madge": {
"inputs": ["production", "^production"],
"cache": true
},
"typecheck": {
"inputs": ["production", "^production"],
"outputs": ["{projectRoot}/tsconfig.check.tsbuildinfo"],
"cache": true
},
"test": {
"inputs": ["default", "^production"],
"cache": true,
"configurations": {
"watch": {
"args": "--watch"
},
"all": {
"args": "--all"
}
}
}
},
"parallel": 6,
"nxCloudAccessToken": "YjM0NGViNDAtNWRlZS00YjY0LWIzNTQtNTk5ZmU4ZTI3OGNjfHJlYWQtd3JpdGU="
}