Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc2d995873 | ||
|
|
e65f90ee80 | ||
|
|
782c3e79b0 | ||
|
|
6f43288807 |
@@ -20,7 +20,7 @@ jobs:
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
node-version: '24'
|
||||
|
||||
- name: Server — install & typecheck
|
||||
working-directory: server
|
||||
|
||||
+2
-2
@@ -2,7 +2,7 @@
|
||||
# Imagen única: construye el front (Vite) y lo sirve desde el servidor (Fastify + Socket.IO).
|
||||
|
||||
# ---- build del front ----
|
||||
FROM node:22-alpine AS web
|
||||
FROM node:24-alpine AS web
|
||||
WORKDIR /web
|
||||
COPY web/package.json web/package-lock.json* ./
|
||||
RUN npm install
|
||||
@@ -10,7 +10,7 @@ COPY web/ ./
|
||||
RUN npm run build # -> /web/dist
|
||||
|
||||
# ---- producción ----
|
||||
FROM node:22-alpine AS production
|
||||
FROM node:24-alpine AS production
|
||||
WORKDIR /app
|
||||
# deps del servidor (incluye tsx y drizzle-kit; NODE_ENV se fija DESPUÉS para no
|
||||
# saltarse las devDependencies durante la instalación)
|
||||
|
||||
Generated
+1034
-1298
File diff suppressed because it is too large
Load Diff
+6
-6
@@ -11,19 +11,19 @@
|
||||
"test": "vitest run"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastify/cors": "^10.0.1",
|
||||
"@fastify/static": "^8.3.0",
|
||||
"drizzle-orm": "^0.36.4",
|
||||
"@fastify/cors": "^11.0.0",
|
||||
"@fastify/static": "^9.0.0",
|
||||
"drizzle-orm": "^0.45.0",
|
||||
"fastify": "^5.1.0",
|
||||
"nanoid": "^5.0.9",
|
||||
"postgres": "^3.4.5",
|
||||
"socket.io": "^4.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"drizzle-kit": "^0.28.1",
|
||||
"drizzle-kit": "^0.31.0",
|
||||
"socket.io-client": "^4.8.1",
|
||||
"tsx": "^4.19.2",
|
||||
"typescript": "^5.7.2",
|
||||
"vitest": "^2.1.8"
|
||||
"typescript": "^6.0.0",
|
||||
"vitest": "^4.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+570
-1421
File diff suppressed because it is too large
Load Diff
+9
-9
@@ -9,18 +9,18 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
"@dnd-kit/sortable": "^9.0.0",
|
||||
"@dnd-kit/sortable": "^10.0.0",
|
||||
"@dnd-kit/utilities": "^3.2.2",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-router-dom": "^6.28.0",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"react-router-dom": "^7.0.0",
|
||||
"socket.io-client": "^4.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.3.12",
|
||||
"@types/react-dom": "^18.3.1",
|
||||
"@vitejs/plugin-react": "^4.3.4",
|
||||
"typescript": "^5.7.2",
|
||||
"vite": "^6.0.3"
|
||||
"@types/react": "^19.0.0",
|
||||
"@types/react-dom": "^19.0.0",
|
||||
"@vitejs/plugin-react": "^6.0.0",
|
||||
"typescript": "^6.0.0",
|
||||
"vite": "^8.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
/// <reference types="vite/client" />
|
||||
Reference in New Issue
Block a user