Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20.x"]
node: ["24.x"]

steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v24
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ coverage
dist
website/.docusaurus
website/build
pnpm-lock.yaml
pnpm-lock.yaml
src/set-version.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

✅  Modular by design and supports tree-shaking.
✅  Officially-supported, aligns 1:1 with the RAWeb API.
✅  Supports Node environments (16 and above).
✅  Supports Node environments (24 and above).
✅  Ships with TypeScript support and types.
✅  Automatically maps types and properties from RAWeb PHP calls.
✅ &nbsp;Small, <3Kb.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
}
},
"engines": {
"node": ">=16"
"node": ">=24"
},
"release": {
"branches": [
Expand Down
4 changes: 3 additions & 1 deletion src/set-version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import packageJson from "../package.json" assert { type: "json" };
// This file is on the .prettierignore list due to issues with the `with` keyword. Once
// the version of Prettier is updated, this file can be removed from the ignore list.
import packageJson from "../package.json" with { type: "json" };

const { version } = packageJson;

Expand Down