Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen authored and usrrname committed Mar 9, 2024
1 parent 875a0b4 commit 7d248c1
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 7d248c1

Please sign in to comment.