Skip to content

Commit

Permalink
Use pnpm@9 to manage dependencies (#124)
Browse files Browse the repository at this point in the history
* chore: Removed lockfile

* chore: Recreated lockfile

* chore: Ensured that pnpm@9 is used

* chore: Added changeset

---------

Co-authored-by: ijlee2 <[email protected]>
  • Loading branch information
ijlee2 and ijlee2 authored Aug 13, 2024
1 parent ecdbb67 commit 9489c33
Show file tree
Hide file tree
Showing 4 changed files with 2,444 additions and 1,791 deletions.
12 changes: 12 additions & 0 deletions .changeset/khaki-apples-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@codemod-utils/ast-javascript": patch
"@codemod-utils/ast-template": patch
"@codemod-utils/blueprints": patch
"@codemod-utils/cli": patch
"@codemod-utils/ember-cli-string": patch
"@codemod-utils/files": patch
"@codemod-utils/json": patch
"@codemod-utils/tests": patch
---

Used pnpm@9 to manage dependencies
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

env:
NODE_VERSION: 18
PNPM_VERSION: 9

jobs:
lint:
Expand All @@ -19,9 +20,9 @@ jobs:
uses: actions/checkout@v4

- name: Set up pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: latest
version: ${{ env.PNPM_VERSION }}

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
Expand All @@ -45,9 +46,9 @@ jobs:
uses: actions/checkout@v4

- name: Set up pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: latest
version: ${{ env.PNPM_VERSION }}

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@changesets/get-github-info": "^0.6.0"
},
"engines": {
"node": "18.* || >= 20"
"node": "18.* || >= 20",
"pnpm": ">= 9"
}
}
Loading

0 comments on commit 9489c33

Please sign in to comment.