|
пре 2 година | |
---|---|---|
.. | ||
lib | пре 2 година | |
CHANGELOG.md | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
package.json | пре 2 година |
@lerna/has-npm-version
Test if the current version of npm satisfies a given semver range
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.