Skip to content
Open
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 .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Check formatting

env:
PNPM_VERSION: "10.28.1"
PNPM_VERSION: "11.17.0"
NODE_VERSION: "24.11.0"

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-formatting.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Fix formatting

env:
PNPM_VERSION: "10.28.1"
PNPM_VERSION: "11.17.0"
NODE_VERSION: "24.11.0"

permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/monkey-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Monkey CI

env:
PNPM_VERSION: "10.28.1"
PNPM_VERSION: "11.17.0"
NODE_VERSION: "24.11.0"
RECAPTCHA_SITE_KEY: "6Lc-V8McAAAAAJ7s6LGNe7MBZnRiwbsbiWts87aj"

Expand Down
3 changes: 0 additions & 3 deletions .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion backend/docker/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
build:
dockerfile_inline: |
FROM node:24.11.0
RUN npm i -g pnpm@10.28.1
RUN npm i -g pnpm@11.17.0
RUN mkdir /pnpm-store && chown -R 1000:1000 /pnpm-store
user: "node" ##this works as long as your local user has uid=1000
restart: on-failure
Expand Down
2 changes: 1 addition & 1 deletion docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY packages packages
COPY backend backend

#gimme pnpm + build
RUN npm i -g pnpm@10.28.1 && \
RUN npm i -g pnpm@11.17.0 && \
pnpm i --frozen-lockfile && \
npm run build

Expand Down
2 changes: 1 addition & 1 deletion docs/CONTRIBUTING_ADVANCED.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If you use `nvm` (if you use Windows, use [nvm-windows](https://github.com/corey

Alternatively, you can navigate to the NodeJS [website](https://nodejs.org/en/) to download it from there.

For package management, we use `pnpm` instead of `npm` or `yarn`. You can install it by running `npm i -g pnpm@10.28.1`. This will install `pnpm` globally on your machine.
For package management, we use `pnpm` instead of `npm` or `yarn`. You can install it by running `npm i -g pnpm@11.17.0`. This will install `pnpm` globally on your machine.

### Docker (Recommended but Optional)

Expand Down
2 changes: 1 addition & 1 deletion frontend/docker/compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
dockerfile_inline: |
FROM node:24.11.0
RUN npm i -g pnpm@10.28.1
RUN npm i -g pnpm@11.17.0
RUN mkdir /pnpm-store && chown -R 1000:1000 /pnpm-store
user: "node" ##this works as long as your local user has uid=1000
# restart: on-failure
Expand Down
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,5 @@
"engines": {
"node": ">=24.0.0 <25"
},
"packageManager": "pnpm@10.28.1",
"pnpm": {
"overrides": {
"postcss": "8.5.8"
}
}
"packageManager": "pnpm@11.17.0"
}
2,358 changes: 1,051 additions & 1,307 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

31 changes: 19 additions & 12 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,22 @@ packages:
- packages/*
- frontend/storybook

onlyBuiltDependencies:
- "@firebase/util"
- "@fortawesome/fontawesome-free"
- "@sentry/cli"
- bcrypt
- core-js
- cpu-features
- esbuild
- msgpackr-extract
- protobufjs
- re2
- ssh2
allowBuilds:
"@firebase/util": true
"@fortawesome/fontawesome-free": true
"@parcel/watcher": true
"@sentry/cli": true
bcrypt: true
core-js: true
cpu-features: true
esbuild: true
msgpackr-extract: true
protobufjs: true
re2: true
ssh2: true

overrides:
"postcss": "8.5.8"
engineStrict: true
saveExact: true
savePrefix: ""
Loading