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
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ on:

jobs:
verify:
name: Verify [Node ${{ matrix.node_version }}]
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['18', '20', '22.6']
node_version: ['18', '20', '22', '24']
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We want this community to be friendly and respectful to each other. Please read

## Requirements

- Node 18+
- Node 20+ (although Node 18 is still supported but has now reached EOL)
- pnpm 8 (use it via `corepack install`)

## Our Development Process
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "repack",
"private": true,
"packageManager": "pnpm@9.5.0",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "is-in-ci || husky",
"build": "nx run-many -t build",
Expand Down Expand Up @@ -31,7 +35,6 @@
"nx": "19.7.3",
"typescript": "catalog:"
},
"packageManager": "pnpm@9.5.0",
"pnpm": {
"patchedDependencies": {
"@rspress/plugin-llms@2.0.0-beta.3": "patches/@rspress__plugin-llms@2.0.0-beta.3.patch"
Expand Down
Loading