Compare commits

..

No commits in common. "c505421544710f4e0ea6b09ee11f10d8bfba5da9" and "5f50a97549f48344eeed2c560d7c9d3eed48d559" have entirely different histories.

2 changed files with 4 additions and 6 deletions

View File

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

View File

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