Skip to content

Commit cf36e6e

Browse files
authored
Add support for Node 20.17.0 (#100)
1 parent ec0d584 commit cf36e6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"sideEffects": false,
1919
"engines": {
20-
"node": ">=20.18"
20+
"node": ">=20.17"
2121
},
2222
"scripts": {
2323
"test": "xo && c8 ava && npm run type",

test/spawn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test('Does not keep --inspect* Node flags', async t => {
3333
t.false(stdout.includes(inspectCliFlag));
3434
});
3535

36-
const TEST_NODE_VERSION = '20.18.0';
36+
const TEST_NODE_VERSION = '20.17.0';
3737

3838
test.serial('Keeps Node version', async t => {
3939
const {path: nodePath} = await getNode(TEST_NODE_VERSION);

0 commit comments

Comments
 (0)