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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 10
version: 10.33.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 10
version: 10.33.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 10
version: 10.33.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 10
version: 10.33.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To contribute code, you'll need to set up your development environment.
**Prerequisites:**

- **Node.js:** Version 24. You can use a version manager like [fnm](https://github.com/Schniz/fnm) or [nvm](https://github.com/nvm-sh/nvm) to manage Node.js versions.
- **pnpm:** We use `pnpm` for package management. Install it using Homebrew: `brew install pnpm`, or follow the official [pnpm installation guide](https://pnpm.io/installation) for other systems.
- **pnpm:** We use `pnpm` for package management, pinned via the `packageManager` field in `package.json`. Install pnpm via Homebrew (`brew install pnpm`) or the official [pnpm installation guide](https://pnpm.io/installation); pnpm will automatically use the pinned version when run inside this repo.

**Steps:**

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV NODE_ENV="production"
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN mkdir $PNPM_HOME && \
wget -qO- "https://github.com/pnpm/pnpm/releases/download/v10.18.1/pnpm-linuxstatic-arm64" > "$PNPM_HOME/pnpm" && \
wget -qO- "https://github.com/pnpm/pnpm/releases/download/v10.33.4/pnpm-linuxstatic-arm64" > "$PNPM_HOME/pnpm" && \
chmod +x $PNPM_HOME/pnpm && \
ln -s $PNPM_HOME/pnpm /usr/local/bin/pnpm

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.14.1",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.4",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand Down
51 changes: 18 additions & 33 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
onlyBuiltDependencies:
- '@prisma/client'
- '@prisma/engines'
- '@tailwindcss/oxide'
- esbuild
- prisma
- protobufjs
- sharp
allowBuilds:
'@prisma/client': true
'@prisma/engines': true
'@tailwindcss/oxide': true
esbuild: true
prisma: true
protobufjs: true
sharp: true

patchedDependencies:
vite-imagetools: patches/vite-imagetools.patch
Loading