-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.json
30 lines (30 loc) · 952 Bytes
/
project.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
{
"root": "packages/cast/cast-eth-v1",
"sourceRoot": "packages/cast/cast-eth-v1/src",
"exclude": [],
"projectType": "library",
"targets": {
"distribute": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm run distribute -- --network-folder={args.network-folder} --amount 100;",
"cwd": "packages/cast/cast-eth-v1"
}
},
"build": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm run build",
"cwd": "packages/cast/cast-eth-v1"
}
},
"deploy": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm run deploy -- --network-folder={args.network-folder}",
"cwd": "packages/cast/cast-eth-v1"
}
}
},
"tags": []
}