feat: use pnpm everywhere
Some checks failed
deploy / deploy (push) Failing after 1m5s

This commit is contained in:
ndsboy 2025-03-19 20:04:05 +00:00
parent 4211805918
commit 8dabfd9645
2 changed files with 11 additions and 9 deletions

16
.vscode/tasks.json vendored
View file

@ -3,34 +3,36 @@
"tasks": [ "tasks": [
{ {
"label": "install/update", "label": "install/update",
"command": "deno task install", "command": "pnpm install",
"type": "shell", "type": "shell",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "dev", "label": "dev",
"command": "deno task dev", "command": "pnpm dev",
"type": "shell", "type": "shell",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "check", "label": "check",
"command": "deno task check", "command": "pnpm check",
"type": "shell", "type": "shell",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "preview", "label": "preview",
"command": "deno task preview", "command": "pnpm preview",
"type": "shell", "type": "shell",
"problemMatcher": [], "problemMatcher": [],
"dependsOn": ["build"] "dependsOn": [
"build"
]
}, },
{ {
"label": "build", "label": "build",
"command": "deno task build", "command": "pnpm build",
"type": "shell", "type": "shell",
"problemMatcher": [] "problemMatcher": []
} }
] ]
} }

View file

@ -1,8 +1,8 @@
FROM docker.io/library/node AS build FROM docker.io/library/node AS build
COPY . . COPY . .
ENV ASTRO_TELEMETRY_DISABLED=true ENV ASTRO_TELEMETRY_DISABLED=true
RUN npm install RUN pnpm install
RUN npm build RUN pnpm build
FROM git.swablab.de/swablab/documents AS documents FROM git.swablab.de/swablab/documents AS documents