diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index cc47a13..e6fffc8 100644 --- a/package.json +++ b/package.json @@ -29,13 +29,14 @@ }, "scripts": { "build": "npm-run-all clean tsc copy-views", - "build:ci": "npm-run-all clean tsc", + "build:ci": "npm-run-all clean lint tsc", "build:pack": "npm-run-all build pack", "copy-views": "cp -r ./src/views ./dist/views && cp -r ./src/public ./dist/public", "clean": "rm -rf dist", "dev": "nodemon --watch ./src -e ts,ejs,css,js --exec yarn dev:start", "dev:start": "npm-run-all build start", "lint": "eslint --ext .ts,.js ./src --fix", + "lint:ci": "eslint --ext .ts,.js ./src", "pack": "pkg . -t node16-linux -o pend-server", "start": "node dist/index.js", "tsc": "tsc --project ./tsconfig.json" |