Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

semver-check

krusty-krab8ISC0.0.2

Checks package.json dependencies and devDependencies stanzas for semantic version characters. If found, it logs each offending dependency to the console.

semver, semantic-version, semantic, version, check

readme

semver-check

Checks package.json dependencies and devDependencies stanzas for semantic version characters.

If found, it logs each offending dependency to the console.

Usage

# Install as dep
$ npm install semver-check --save-dev

# Add a dep to your package.json that has one of these chars: *=~<>^
$ npm install chalk --save

# Run as a cli program.
$ ./node_modules/.bin/semver-check package.json
// -> chalk not pinned to specific version

Note

The first() higher order function, and why I'm using it.