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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4
# No version here on purpose: it reads `packageManager` from
# package.json, so the pnpm version has one source of truth.
- uses: pnpm/action-setup@v4
with:
version: 11.17.0
- uses: actions/setup-node@v4
with:
node-version: 24
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": "0.0.1",
"type": "module",
"private": true,
"packageManager": "pnpm@11.17.0",
"engines": {
"node": "24.x"
},
Expand Down
7 changes: 7 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This repo is not a workspace. The file exists only to hold pnpm settings.
#
# `allowBuilds` and `minimumReleaseAgeExclude` are pnpm 11 keys, and pnpm 10
# rejects a workspace file that has no `packages` field. `package.json` pins
# `packageManager` to pnpm 11 so every environment agrees, including the
# Cloudflare build image, which defaults to pnpm 10.
#
# Postinstall scripts pnpm is allowed to run. Without these, `pnpm <script>`
# aborts on its dependency-status check. esbuild backs Vitest, workerd backs the
# Cloudflare Vite plugin and `wrangler dev`, and sharp backs vite-imagetools.
Expand Down
Loading