Skip to content

Commit 419badc

Browse files
committed
fix: update Node.js version check to require at least v18
1 parent f66de81 commit 419badc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test-01-hybrid-esm/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const assert = require('assert');
66
const utils = require('../utils.js');
77

88
// sea is not supported on Node.js < 20
9-
if (utils.getNodeMajorVersion() < 10) {
9+
if (utils.getNodeMajorVersion() < 18) {
1010
return;
1111
}
1212

0 commit comments

Comments
 (0)