v1.6.0 #221

Merged
LukeGus merged 74 commits from dev-1.6.0 into main 2025-09-12 19:42:00 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 8942a7ecec - Show all commits

View File

@@ -35,7 +35,7 @@ ENV npm_config_target_libc=glibc
# Rebuild native modules for the target platform
RUN npm rebuild better-sqlite3 --force
RUN npm run dev:backend
RUN npm run build:backend
# Stage 4: Production dependencies
FROM node:24-alpine AS production-deps

View File

@@ -9,6 +9,7 @@
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.node.json",
"build:backend": "tsc -p tsconfig.node.json",
"dev:backend": "tsc -p tsconfig.node.json && node ./dist/backend/backend/starter.js",
"lint": "eslint .",
"preview": "vite preview",