Compare commits

...

2 Commits

2 changed files with 6 additions and 4 deletions

View File

@ -6,11 +6,11 @@
"private": true, "private": true,
"license": "UNLICENSED", "license": "UNLICENSED",
"scripts": { "scripts": {
"build": "nest build", "build": "npx nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start", "start": "npx nest start",
"start:dev": "nest start --watch", "start:dev": "npx nest start --watch",
"start:debug": "nest start --debug --watch", "start:debug": "npx nest start --debug --watch",
"start:prod": "node dist/main", "start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest", "test": "jest",

View File

@ -12,6 +12,8 @@
"dest": "dist/main.js" "dest": "dist/main.js"
} }
], ],
"buildCommand": "npx nest build",
"outputDirectory": "dist",
"env": { "env": {
"NODE_ENV": "production" "NODE_ENV": "production"
} }