3.14.0 • Published 5 years ago

@erquhart/lerna-has-npm-version v3.14.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

@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

// makePredicate() caches the call to `npm --version`
// useful if you're calling it repeatedly in a loop
const predicate = hasNpmVersion.makePredicate();

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

Install lerna for access to the lerna CLI.