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": [
{
"label": "install/update",
"command": "deno task install",
"command": "pnpm install",
"type": "shell",
"problemMatcher": []
},
{
"label": "dev",
"command": "deno task dev",
"command": "pnpm dev",
"type": "shell",
"problemMatcher": []
},
{
"label": "check",
"command": "deno task check",
"command": "pnpm check",
"type": "shell",
"problemMatcher": []
},
{
"label": "preview",
"command": "deno task preview",
"command": "pnpm preview",
"type": "shell",
"problemMatcher": [],
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
{
"label": "build",
"command": "deno task build",
"command": "pnpm build",
"type": "shell",
"problemMatcher": []
}
]
}
}

View file

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