Skip to content

Commit c242829

Browse files
authored
Made pnpm settings stricter (#245)
* chore: Updated pnpm to 9.9.0 * chore: Set auto-install-peers and resolve-peers-from-workspace-root to false * chore: Updated lockfile * chore: Added changeset --------- Co-authored-by: ijlee2 <ijlee2@users.noreply.github.com>
1 parent 3453d44 commit c242829

File tree

5 files changed

+44
-332
lines changed

5 files changed

+44
-332
lines changed

.changeset/four-dryers-notice.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"docs-app": patch
3+
"ember-container-query": patch
4+
"test-app": patch
5+
---
6+
7+
Made pnpm settings stricter

.github/workflows/ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ env:
1010
NODE_VERSION: 18
1111
PERCY_PARALLEL_NONCE: ${{ github.run_id }}-${{ github.run_number }}
1212
PERCY_PARALLEL_TOTAL: 9
13-
PNPM_VERSION: 9
1413

1514
jobs:
1615
lint:
@@ -29,8 +28,6 @@ jobs:
2928

3029
- name: Set up pnpm
3130
uses: pnpm/action-setup@v4
32-
# with:
33-
# version: ${{ env.PNPM_VERSION }}
3431

3532
- name: Use Node.js ${{ env.NODE_VERSION }}
3633
uses: actions/setup-node@v4
@@ -56,8 +53,6 @@ jobs:
5653

5754
- name: Set up pnpm
5855
uses: pnpm/action-setup@v4
59-
# with:
60-
# version: ${{ env.PNPM_VERSION }}
6156

6257
- name: Use Node.js ${{ env.NODE_VERSION }}
6358
uses: actions/setup-node@v4
@@ -121,8 +116,6 @@ jobs:
121116

122117
- name: Set up pnpm
123118
uses: pnpm/action-setup@v4
124-
# with:
125-
# version: ${{ env.PNPM_VERSION }}
126119

127120
- name: Use Node.js ${{ env.NODE_VERSION }}
128121
uses: actions/setup-node@v4
@@ -164,8 +157,6 @@ jobs:
164157

165158
- name: Set up pnpm
166159
uses: pnpm/action-setup@v4
167-
# with:
168-
# version: ${{ env.PNPM_VERSION }}
169160

170161
- name: Use Node.js ${{ env.NODE_VERSION }}
171162
uses: actions/setup-node@v4
@@ -205,8 +196,6 @@ jobs:
205196

206197
- name: Set up pnpm
207198
uses: pnpm/action-setup@v4
208-
# with:
209-
# version: ${{ env.PNPM_VERSION }}
210199

211200
- name: Use Node.js ${{ env.NODE_VERSION }}
212201
uses: actions/setup-node@v4

.npmrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
strict-peer-dependencies=false
1+
# https://github.com/emberjs/rfcs/pull/907
2+
auto-install-peers=false
3+
resolve-peers-from-workspace-root=false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"concurrently": "^8.2.2",
3232
"update-workspace-root-version": "^0.3.0"
3333
},
34-
"packageManager": "pnpm@9.7.0",
34+
"packageManager": "pnpm@9.9.0",
3535
"engines": {
3636
"node": "18.* || >= 20",
3737
"pnpm": ">= 9"

0 commit comments

Comments
 (0)