Denis 346b78aee1 first commit 2 tahun lalu
..
lib 346b78aee1 first commit 2 tahun lalu
CHANGELOG.md 346b78aee1 first commit 2 tahun lalu
LICENSE 346b78aee1 first commit 2 tahun lalu
README.md 346b78aee1 first commit 2 tahun lalu
package.json 346b78aee1 first commit 2 tahun lalu

README.md

@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.