Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 453 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 453 Bytes

@lerna/has-npm-version

Test if the current version of npm satisfies a given semver range

Usage

const { hasNpmVersion } = require("@lerna/has-npm-version");

// `npm --version` === 6.3.0
hasNpmVersion(">=6"); // => true

// `npm --version` === 5.6.0
hasNpmVersion(">=6"); // => false

// `npm --version` === 6.3.0
hasNpmVersion(">=5"); // => true

Install lerna for access to the lerna CLI.