We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d174584 commit 4729e1bCopy full SHA for 4729e1b
@bellatrix/runner/bellatrix.js
@@ -3,8 +3,8 @@
3
console.log('DEBUG: starting bellatrix'); // DEBUG
4
5
const nodeVersion = process.versions.node.split('.');
6
-if (parseInt(nodeVersion[0].replace()) < 20 || (parseInt(nodeVersion[0]) == 20 && parseInt(nodeVersion[1]) < 6)) {
7
- throw Error(`You need Node runtime version 20.6.0 minimum. Current version: ${process.versions.node}`);
+if (parseInt(nodeVersion[0].replace()) < 20 || (parseInt(nodeVersion[0]) == 20 && parseInt(nodeVersion[1]) < 9)) {
+ throw Error(`You need Node runtime version 20.9.0 minimum. Current version: ${process.versions.node}`);
8
}
9
10
import { spawnSync } from 'child_process';
0 commit comments