-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathnx.json
More file actions
162 lines (162 loc) · 4.23 KB
/
Copy pathnx.json
File metadata and controls
162 lines (162 loc) · 4.23 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"defaultProject": "@tevm/example-vite",
"cacheDirectory": ".nx",
"targetDefaults": {
"build:rust": {
"inputs": ["default", "rustBuildInputs"],
"outputs": [
"{projectRoot}/target/debug/**/*",
"{projectRoot}/target/release/**/*",
"{projectRoot}/index.node",
"{projectRoot}/*.node",
"{workspaceRoot}/target/debug/**/*",
"{workspaceRoot}/target/release/**/*"
],
"dependsOn": [],
"cache": true
},
"test:rust": {
"inputs": ["default", "rustBuildInputs"],
"outputs": ["{projectRoot}/target/test/**/*"],
"dependsOn": ["^build:rust"],
"cache": true
},
"lint:check": {
"inputs": ["default"],
"cache": true
},
"lint:package": {
"inputs": ["default"],
"dependsOn": ["build:dist", "build:types", "^build:dist", "^build:types"],
"cache": true
},
"lint:deps": {
"inputs": ["default"],
"cache": true
},
"format:check": {
"inputs": ["default"],
"cache": true
},
"test": {
"inputs": ["testFiles", "outputsDist"],
"dependsOn": ["^build:dist", "pretest"]
},
"test:run": {
"inputs": ["testFiles", "outputsDist"],
"dependsOn": ["^build:dist", "pretest"],
"cache": true
},
"test:watch": {
"inputs": ["testFiles", "outputsDist"],
"dependsOn": ["^build:dist"]
},
"test:coverage": {
"inputs": ["testFiles", "outputsDist"],
"dependsOn": ["^build:dist"],
"outputs": ["{projectRoot}/coverage"],
"cache": true
},
"typecheck": {
"inputs": ["production", "outputsDts"],
"dependsOn": ["^build:types"],
"cache": true
},
"build:types": {
"inputs": ["production", "outputsDts"],
"dependsOn": ["^build:types", "^build:dist"],
"outputs": [
"{projectRoot}/dist/**/*.d.ts",
"{projectRoot}/dist/**/*.d.cts",
"{projectRoot}/dist/**/*.d.mts",
"{projectRoot}/types/**/*"
],
"cache": true
},
"build:app": {
"inputs": ["production", "outputsDist"],
"dependsOn": ["^build:dist", "^build:types"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"build:dist": {
"inputs": ["production", "outputsDist"],
"dependsOn": ["^build:dist"],
"outputs": ["{projectRoot}/dist/**/*.js", "{projectRoot}/dist/**/*.cjs", "{projectRoot}/dist/**/*.mjs"],
"cache": true
},
"generate:docs": {
"inputs": ["production", "outputsDts"],
"outputs": ["{projectRoot}/docs"],
"dependsOn": ["^build:types"],
"cache": true
},
"dev": {
"dependsOn": ["^build:dist", "^build:types", "predev"]
},
"dev:run": {
"dependsOn": ["^build:dist", "^build:types", "predev"],
"cache": true
},
"e2e": {
"cache": true
}
},
"defaultBase": "main",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"buildConfigs": [
"{projectRoot}/tsconfig.*?.json",
"{projectRoot}/tsup.config.ts"
],
"rustBuildInputs": [
"{projectRoot}/Cargo.toml",
"{projectRoot}/Cargo.lock",
"{projectRoot}/build.rs",
"{projectRoot}/cbindgen.toml",
"{projectRoot}/**/*.rs",
"{projectRoot}/**/*.h",
"{workspaceRoot}/Cargo.toml",
"{workspaceRoot}/Cargo.lock"
],
"default": [
"{projectRoot}/*.json",
"{projectRoot}/*.js",
"{projectRoot}/*.ts",
"{projectRoot}/*.rs",
"{projectRoot}/*.h",
"{projectRoot}/Cargo.toml",
"{projectRoot}/src/**/*",
"sharedGlobals"
],
"testFiles": ["{projectRoot}/src/**/*", "{projectRoot}/vitest.config.ts"],
"sharedGlobals": [
"{workspaceRoot}/nx.json",
"{workspaceRoot}/bun.lockb",
"{workspaceRoot}/pnpm-lock.yaml",
"{workspaceRoot}/Cargo.lock",
"{workspaceRoot}/Cargo.toml",
"{workspaceRoot}/build.zig",
"{workspaceRoot}/build.zig.zon",
"{workspaceRoot}/configs/**/*",
"{workspaceRoot}/lib/**/*",
"{workspaceRoot}/include/**/*.h",
"{workspaceRoot}/**/*.h"
],
"productionSrc": ["{projectRoot}/src/**/*", "!{projectRoot}/src/**/*.spec.ts", "!{projectRoot}/src/**/*.spec.rs"],
"productionContracts": ["{projectRoot}/contracts/**/*"],
"production": ["default", "buildConfigs", "sharedGlobals", "productionSrc", "productionContracts"],
"outputsDist": [
{
"dependentTasksOutputFiles": "**/*"
}
],
"outputsDts": [
{
"dependentTasksOutputFiles": "**/*"
}
],
"testing": ["configsWorkspace", "default"]
},
"nxCloudAccessToken": "MDdkNmQwZWEtOGYwNy00ZjhkLWI5NGMtNjBiNGExY2Q5MzI2fHJlYWQ="
}