From 8dabfd9645aacdca5868fa685e774f40111bd2da Mon Sep 17 00:00:00 2001 From: ndsboy Date: Wed, 19 Mar 2025 20:04:05 +0000 Subject: [PATCH] feat: use pnpm everywhere --- .vscode/tasks.json | 16 +++++++++------- Containerfile | 4 ++-- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index db86408..e789661 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": [] } ] -} +} \ No newline at end of file diff --git a/Containerfile b/Containerfile index f43cb67..99ccde0 100644 --- a/Containerfile +++ b/Containerfile @@ -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