Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Feb 12, 2024
1 parent 6344a4a commit a4d4087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/cli/src/autoblock/block-node-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { lt } from 'semver';
export const blocker = createBlocker({
id: 'minimumNode16',
async check() {
const nodeVersion = process.version;
const nodeVersion = process.versions.node;
if (lt(nodeVersion, '16.0.0')) {
return { nodeVersion };
}
Expand Down

0 comments on commit a4d4087

Please sign in to comment.