|
23 | 23 | "scripts": { |
24 | 24 | "lint": "eslint --ext js,ts,tsx src --fix", |
25 | 25 | "run-cypress": "npx cypress run", |
26 | | - "start:devnet": "yarn run copy:devnet-config && vite dev", |
27 | | - "start:testnet": "yarn run copy:testnet-config && vite dev", |
28 | | - "start:mainnet": "yarn run copy:mainnet-config && vite dev", |
29 | | - "build:devnet": "tsc & yarn run copy:devnet-config && vite build", |
30 | | - "build:testnet": "tsc & yarn run copy:testnet-config && vite build", |
31 | | - "build:mainnet": "tsc & yarn run copy:mainnet-config && vite build", |
32 | | - "copy:devnet-config": "cp ./src/config/config.devnet.ts ./src/config/index.ts", |
33 | | - "copy:testnet-config": "cp ./src/config/config.testnet.ts ./src/config/index.ts", |
34 | | - "copy:mainnet-config": "cp ./src/config/config.mainnet.ts ./src/config/index.ts", |
| 26 | + "start-devnet": "yarn run copy-devnet-config & vite dev", |
| 27 | + "start-testnet": "yarn run copy-testnet-config & vite dev", |
| 28 | + "start-mainnet": "yarn run copy-mainnet-config & vite dev", |
| 29 | + "build-devnet": "tsc & yarn run copy-devnet-config & vite build", |
| 30 | + "build-testnet": "tsc & yarn run copy-testnet-config & vite build", |
| 31 | + "build-mainnet": "tsc & yarn run copy-mainnet-config & vite build", |
| 32 | + "copy-devnet-config": "cp ./src/config/config.devnet.ts ./src/config/index.ts", |
| 33 | + "copy-testnet-config": "cp ./src/config/config.testnet.ts ./src/config/index.ts", |
| 34 | + "copy-mainnet-config": "cp ./src/config/config.mainnet.ts ./src/config/index.ts", |
35 | 35 | "test": "jest", |
36 | 36 | "wdio-smoke": "wdio run wdio/wdio.conf.ts", |
37 | 37 | "smoke": "wdio run wdio/wdio.conf.ts --suite smoke" |
|
0 commit comments