Showing
1 changed file
with
21 additions
and
11 deletions
| @@ -6,18 +6,28 @@ | @@ -6,18 +6,28 @@ | ||
| 6 | "private": true, | 6 | "private": true, |
| 7 | "license": "UNLICENSED", | 7 | "license": "UNLICENSED", |
| 8 | "scripts": { | 8 | "scripts": { |
| 9 | - "build:prod": "NODE_ENV=prod nest build", | ||
| 10 | - "build:dev": "NODE_ENV=dev nest build", | ||
| 11 | - "build:local": "STAGE=local nest build", | 9 | + "ln:build:prod": "NODE_ENV=prod && nest build", |
| 10 | + "ln:build:dev": "SET NODE_ENV=dev && nest build", | ||
| 11 | + "ln:build:local": "STAGE=local nest build", | ||
| 12 | + "ln:start": "STAGE=dev nest start", | ||
| 13 | + "ln:start:test": "SET NODE_ENV=dev && nest start", | ||
| 14 | + "ln:start:dev": "SET NODE_ENV=dev && nest start", | ||
| 15 | + "ln:start:dev:debug": "SET NODE_ENV=dev && nest start --debug --watch", | ||
| 16 | + "ln:start:local": "SET NODE_ENV=local && nest start --watch", | ||
| 17 | + "ln:start:local:debug": "SET NODE_ENV=local && nest start --debug --watch", | ||
| 18 | + "ln:start:prod": "SET NODE_ENV=prod && nest start --watch", | ||
| 19 | + "win:build:prod": "SET NODE_ENV=prod && nest build", | ||
| 20 | + "win:build:dev": "SET NODE_ENV=dev && nest build", | ||
| 21 | + "win:build:local": "STAGE=local nest build", | ||
| 22 | + "win:start": "STAGE=dev nest start", | ||
| 23 | + "win:start:test": "SET NODE_ENV=dev && nest start", | ||
| 24 | + "win:start:dev": "SET NODE_ENV=dev && nest start", | ||
| 25 | + "win:start:dev:debug": "SET NODE_ENV=dev && nest start --debug --watch", | ||
| 26 | + "win:start:local": "SET NODE_ENV=local && nest start --watch", | ||
| 27 | + "win:start:local:debug": "SET NODE_ENV=local && nest start --debug --watch", | ||
| 28 | + "win:start:prod": "SET NODE_ENV=prod && nest start --watch", | ||
| 29 | + "win:start:prod:debug": "SET NODE_ENV=prod && nest start --debug --watch", | ||
| 12 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"", | 30 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"", |
| 13 | - "start": "STAGE=dev nest start", | ||
| 14 | - "start:test": "NODE_ENV=dev nest start", | ||
| 15 | - "start:dev": "NODE_ENV=dev nest start", | ||
| 16 | - "start:dev:debug": "NODE_ENV=dev nest start --debug --watch", | ||
| 17 | - "start:local": "NODE_ENV=local nest start --watch", | ||
| 18 | - "start:local:debug": "NODE_ENV=local nest start --debug --watch", | ||
| 19 | - "start:prod": "NODE_ENV=prod nest start --watch", | ||
| 20 | - "start:prod:debug": "NODE_ENV=prod nest start --debug --watch", | ||
| 21 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | 31 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
| 22 | "test": "jest", | 32 | "test": "jest", |
| 23 | "test:watch": "jest --watch", | 33 | "test:watch": "jest --watch", |
Please
register
or
login
to post a comment