Skip to content

Commit 838bd2f

Browse files
committed
1 parent a388b28 commit 838bd2f

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

packages/artillery/project.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,47 +7,53 @@
77
"init": {
88
"executor": "nx:run-commands",
99
"options": {
10-
"command": "tsx packages/artillery/src/init.ts"
10+
"cwd": "{projectRoot}",
11+
"command": "tsx src/init.ts"
1112
}
1213
},
1314
"balance-status": {
1415
"executor": "nx:run-commands",
1516
"options": {
16-
"command": "tsx packages/artillery/src/balance-status.ts"
17+
"cwd": "{projectRoot}",
18+
"command": "tsx src/balance-status.ts"
1719
}
1820
},
1921
"run:pkp-sign": {
2022
"executor": "nx:run-commands",
2123
"options": {
22-
"command": "artillery run packages/artillery/configs/pkp-sign.yml"
24+
"cwd": "{projectRoot}",
25+
"command": "artillery run configs/pkp-sign.yml"
2326
}
2427
},
2528
"run:encrypt-decrypt": {
2629
"executor": "nx:run-commands",
2730
"options": {
28-
"command": "artillery run packages/artillery/configs/encrypt-decrypt.yml"
31+
"cwd": "{projectRoot}",
32+
"command": "artillery run configs/encrypt-decrypt.yml"
2933
}
3034
},
3135
"run:execute": {
3236
"executor": "nx:run-commands",
3337
"options": {
34-
"command": "artillery run packages/artillery/configs/execute.yml"
38+
"cwd": "{projectRoot}",
39+
"command": "artillery run configs/execute.yml"
3540
}
3641
},
3742
"run:mix": {
3843
"executor": "nx:run-commands",
3944
"options": {
40-
"command": "artillery run packages/artillery/configs/mix.yml"
45+
"cwd": "{projectRoot}",
46+
"command": "artillery run configs/mix.yml"
4147
}
4248
},
4349
"run:sign-session-key": {
4450
"executor": "nx:run-commands",
4551
"options": {
46-
"command": "artillery run packages/artillery/configs/sign-session-key.yml"
52+
"cwd": "{projectRoot}",
53+
"command": "artillery run configs/sign-session-key.yml"
4754
}
4855
}
4956
},
5057
"tags": []
5158
}
5259

53-

0 commit comments

Comments
 (0)