Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:20 AS builder-base
WORKDIR /app
# Version of corepack distributed with node currently (2025-02-04) has a bug that prevents PNPM installation; latest version has the bugfix
RUN npm install -g corepack@latest
RUN corepack enable && corepack prepare pnpm@10.12.3 --activate
RUN corepack enable && corepack prepare pnpm@10.24.0 --activate

FROM builder-base AS builder

Expand Down
2 changes: 1 addition & 1 deletion frontend/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:20 AS builder

# Version of corepack distributed with node currently (2025-02-04) has a bug that prevents PNPM installation; latest version has the bugfix
RUN npm install -g corepack@latest
RUN corepack enable && corepack prepare pnpm@10.12.3 --activate
RUN corepack enable && corepack prepare pnpm@10.24.0 --activate
WORKDIR /app

COPY package.json pnpm-lock.yaml pnpm-workspace.yaml /app/
Expand Down
2 changes: 1 addition & 1 deletion frontend/https-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "https-proxy",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.12.3",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
Expand Down
10 changes: 1 addition & 9 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "frontend",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.12.3",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
Expand Down Expand Up @@ -108,13 +108,5 @@
"svelte-intl-precompile": "^0.12.3",
"sveltekit-search-params": "^3.0.0",
"tus-js-client": "^4.3.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs",
"sharp",
"svelte-preprocess"
]
}
}
6 changes: 6 additions & 0 deletions frontend/pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ catalog:
'@playwright/test': ^1.54.0
runed: ^0.27.0
autoprefixer: ^10.4.21

onlyBuiltDependencies:
- "esbuild"
- "protobufjs"
- "sharp"
- "svelte-preprocess"
2 changes: 1 addition & 1 deletion frontend/viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "viewer",
"private": true,
"packageManager": "pnpm@10.12.3",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
Expand Down
Loading