forked from ArkEcosystem/mainsail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnx.json
More file actions
25 lines (25 loc) · 818 Bytes
/
Copy pathnx.json
File metadata and controls
25 lines (25 loc) · 818 Bytes
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
{
"namedInputs": {
"typescript": ["{projectRoot}/source/**/!(*.test).ts", "{projectRoot}/source/**/*.json"],
"evm": ["{projectRoot}/core/**/*.rs", "{projectRoot}/bindings/**/*.rs", "{projectRoot}/**/Cargo.toml"],
"tsToken": ["{workspaceRoot}/.build-ts"],
"rsToken": ["{workspaceRoot}/.build-rs"],
"production": ["default"]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["tsToken", "typescript"],
"outputs": ["{projectRoot}/distribution", "{projectRoot}/tsconfig.tsbuildinfo"],
"cache": true
},
"build-rs": {
"dependsOn": [""],
"inputs": ["rsToken", "evm"],
"outputs": ["{projectRoot}/index.d.ts", "{projectRoot}/index.js", "{projectRoot}/evm.*.node"],
"cache": true
}
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"analytics": false
}