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
1 change: 1 addition & 0 deletions apps/penpal/DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ see-also:
- **Used by:** Building the React frontend (Vite), running frontend tests (Vitest), running e2e tests (Playwright)
- **Where it runs:** Dev and CI only (compiled JS/HTML assets bundled into .app)
- **Why external:** Vite and TypeScript compiler require a Node.js runtime
- **Note:** This project uses **pnpm** (not npm). The root `package.json` enforces this via the `packageManager` field, and `pnpm-workspace.yaml` defines the workspace. Do not use `npm install` or commit `package-lock.json` files.

## Optional Runtime Dependencies

Expand Down
2 changes: 1 addition & 1 deletion apps/penpal/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ prepare version:
# Update version in Cargo.toml (source of truth)
sed -i '' 's/^version = ".*"/version = "{{version}}"/' frontend/src-tauri/Cargo.toml
# Update version in package.json
cd frontend && npm version "{{version}}" --no-git-tag-version && cd ..
cd frontend && pnpm version "{{version}}" --no-git-tag-version && cd ..

# Generate and review changelog
just changelog {{version}}
Expand Down