Skip to content

Commit c85a2ff

Browse files
authored
Merge pull request #577 from jayvdb/pnpm-10
Support pnpm v10
2 parents 0b2528a + 07bd0c8 commit c85a2ff

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/src-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ jobs:
178178
fail-fast: false
179179
matrix:
180180
pnpm:
181-
- 8
182181
- 9
182+
- 10
183183

184184
name: E2E (pnpm ${{ matrix.pnpm }})
185185

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ Each package in the monorepo (under `src/packages/`) contains a README with furt
108108
```bash
109109
# cwd: src/
110110

111+
npm install
112+
111113
npm run lint
112114

113115
npm run test # unit tests

src/packages/generate-license-file/src/lib/internal/resolveDependencies/resolvePnpmDependencies.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export const resolveDependenciesForPnpmProject = async (
7979
};
8080

8181
const allowedPnpmMinorVersions: Record<number, number> = {
82+
10: 0,
8283
9: 0,
8384
8: 0,
8485
7: 33,

0 commit comments

Comments
 (0)