Compare commits

..

3 Commits

Author SHA1 Message Date
7cb8402b39 Workflow: Update formula11 dockerfile
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 33s
2025-02-02 22:43:03 +01:00
16b9b1343b Env: Remove empty dependencies from package.json 2025-02-02 22:42:54 +01:00
743ca7ad2d Env: Update check command 2025-02-02 22:42:42 +01:00
3 changed files with 4 additions and 3 deletions

View File

@ -142,7 +142,7 @@
{ {
name = "check"; name = "check";
help = "Continuously monitor for SvelteKit issues"; help = "Continuously monitor for SvelteKit issues";
command = "svelte-check --watch"; command = "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch";
} }
]; ];
}; };

View File

@ -6,6 +6,9 @@ COPY package*.json ./
RUN npm ci RUN npm ci
# Sharp requires extra shit
RUN npm install --include=optional sharp
COPY . . COPY . .
RUN npm run build RUN npm run build

View File

@ -35,7 +35,5 @@
"typescript": "^5.7.3", "typescript": "^5.7.3",
"uuid": "^11.0.5", "uuid": "^11.0.5",
"vite": "^6.0.11" "vite": "^6.0.11"
},
"dependencies": {
} }
} }