|
7 | 7 | "init": { |
8 | 8 | "executor": "nx:run-commands", |
9 | 9 | "options": { |
10 | | - "command": "tsx packages/artillery/src/init.ts" |
| 10 | + "cwd": "{projectRoot}", |
| 11 | + "command": "tsx src/init.ts" |
11 | 12 | } |
12 | 13 | }, |
13 | 14 | "balance-status": { |
14 | 15 | "executor": "nx:run-commands", |
15 | 16 | "options": { |
16 | | - "command": "tsx packages/artillery/src/balance-status.ts" |
| 17 | + "cwd": "{projectRoot}", |
| 18 | + "command": "tsx src/balance-status.ts" |
17 | 19 | } |
18 | 20 | }, |
19 | 21 | "run:pkp-sign": { |
20 | 22 | "executor": "nx:run-commands", |
21 | 23 | "options": { |
22 | | - "command": "artillery run packages/artillery/configs/pkp-sign.yml" |
| 24 | + "cwd": "{projectRoot}", |
| 25 | + "command": "artillery run configs/pkp-sign.yml" |
23 | 26 | } |
24 | 27 | }, |
25 | 28 | "run:encrypt-decrypt": { |
26 | 29 | "executor": "nx:run-commands", |
27 | 30 | "options": { |
28 | | - "command": "artillery run packages/artillery/configs/encrypt-decrypt.yml" |
| 31 | + "cwd": "{projectRoot}", |
| 32 | + "command": "artillery run configs/encrypt-decrypt.yml" |
29 | 33 | } |
30 | 34 | }, |
31 | 35 | "run:execute": { |
32 | 36 | "executor": "nx:run-commands", |
33 | 37 | "options": { |
34 | | - "command": "artillery run packages/artillery/configs/execute.yml" |
| 38 | + "cwd": "{projectRoot}", |
| 39 | + "command": "artillery run configs/execute.yml" |
35 | 40 | } |
36 | 41 | }, |
37 | 42 | "run:mix": { |
38 | 43 | "executor": "nx:run-commands", |
39 | 44 | "options": { |
40 | | - "command": "artillery run packages/artillery/configs/mix.yml" |
| 45 | + "cwd": "{projectRoot}", |
| 46 | + "command": "artillery run configs/mix.yml" |
41 | 47 | } |
42 | 48 | }, |
43 | 49 | "run:sign-session-key": { |
44 | 50 | "executor": "nx:run-commands", |
45 | 51 | "options": { |
46 | | - "command": "artillery run packages/artillery/configs/sign-session-key.yml" |
| 52 | + "cwd": "{projectRoot}", |
| 53 | + "command": "artillery run configs/sign-session-key.yml" |
47 | 54 | } |
48 | 55 | } |
49 | 56 | }, |
50 | 57 | "tags": [] |
51 | 58 | } |
52 | 59 |
|
53 | | - |
|
0 commit comments