|
6 | 6 | }, |
7 | 7 | "scripts": { |
8 | 8 | "cdk:synth": "cdk synth -q \"*\"", |
9 | | - "cdk:synth:prod": "cdk synth --context STAGE=prod -q \"*\"", |
| 9 | + "cdk:synth:prod": "cdk synth --context STAGE=prod", |
10 | 10 | "cdk:diff": "cdk diff --app cdk.out", |
11 | 11 | "cdk:deploy": "cdk deploy --app cdk.out", |
12 | 12 | "cdk:deploy:all": "cdk deploy --app cdk.out --all", |
13 | 13 | "cdk:destroy": "cdk destroy --app cdk.out", |
14 | 14 | "cdk:destroy:all": "cdk destroy --app cdk.out --all", |
15 | 15 | "cdk:clean": "rimraf cdk.out", |
16 | 16 | "cdk:test:synth": "cdk synth -o cdk.test.out -a \"npx ts-node --prefer-ts-exts -r dotenv/config bin/application.ts\"", |
17 | | - "cdk:test:deploy": "cdk deploy --app cdk.test.out --all", |
18 | | - "cdk:test:destroy": "cdk destroy --app cdk.test.out --all", |
| 17 | + "cdk:test:deploy": "cdk deploy --app cdk.test.out", |
| 18 | + "cdk:test:deploy:all": "cdk deploy --app cdk.test.out --all", |
| 19 | + "cdk:test:destroy": "cdk destroy --app cdk.test.out", |
| 20 | + "cdk:test:destroy:all": "cdk destroy --app cdk.test.out --all", |
19 | 21 | "cdk:test:clean": "rimraf cdk.test.out", |
20 | 22 | "codecheck": "concurrently \"npm run lint:check\" \"npm run format:check\"", |
21 | 23 | "format": "prettier . --write", |
|
0 commit comments