fix: yeah it should work now

This commit is contained in:
2022-12-23 18:54:54 +01:00
parent 99664b1ca0
commit d72cf83ec6
2 changed files with 2 additions and 2 deletions

View File

@@ -8,6 +8,6 @@ RUN npm install
COPY . .
RUN tsc --build
RUN npm run build
CMD node dist/index.js

View File

@@ -5,7 +5,7 @@
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build": "tsc --build",
"start": "tsc && node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\""
},