run build in dockerfile

This commit is contained in:
MapleLeaf
2022-01-09 03:14:59 -06:00
parent 0a89521a36
commit 2462870a57
3 changed files with 19 additions and 16 deletions

View File

@@ -8,9 +8,9 @@
"dev": "npm-run-all --parallel --print-label --race dev-*",
"dev-server": "nodemon --inspect --exec \"pnpm serve\" --watch src --ext ts,tsx,md,css",
"dev-docs": "typedoc --watch",
"start": "pnpm build-docs && cross-env NODE_ENV=production pnpm serve",
"typecheck": "tsc --noEmit",
"build-docs": "typedoc"
"build": "typedoc",
"start": "cross-env NODE_ENV=production pnpm serve",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
@@ -38,9 +38,7 @@
"react": "^18.0.0-rc.0",
"react-dom": "^18.0.0-rc.0",
"react-ssr-prepass": "^1.5.0",
"tailwindcss": "^3.0.8",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
"tailwindcss": "^3.0.8"
},
"devDependencies": {
"@types/browser-sync": "^2.26.3",
@@ -60,6 +58,8 @@
"rxjs": "^7.5.1",
"tsup": "^5.11.10",
"type-fest": "^2.8.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"wait-on": "^6.0.0"
}
}