Skip to content

Commit

Permalink
Strictly require project to use pnpm 9 or higher (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored May 6, 2024
1 parent 2614fa2 commit 7f6f40f
Show file tree
Hide file tree
Showing 5 changed files with 7,900 additions and 6,399 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
- name: Install package manager
uses: pnpm/action-setup@v3
with:
version: 8.15.4
version: 9.1.0

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundlesize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install package manager
uses: pnpm/action-setup@v3
with:
version: 8.15.4
version: 9.1.0
run_install: false

- name: Download Experimental Library Bundle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install package manager
uses: pnpm/action-setup@v3
with:
version: 8.15.4
version: 9.1.0

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,14 @@
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"engineStrict": true,
"engines": {
"node": ">=14.0.0"
"node": ">=14.0.0",
"npm": "please-use-pnpm",
"pnpm": "^9",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@8.5.1",
"packageManager": "pnpm@9.1.0",
"pnpm": {
"overrides": {
"jsdom": "^22",
Expand Down
Loading

0 comments on commit 7f6f40f

Please sign in to comment.