README
pm-validator!
Welcome toWhy
When many developers are working on the same project each of them can use different package manager ( npm or yarn ), but using multi lock files can make some small issues. To prevent it I created this package.
Requirements
Available npx
( execute npm package binaries - default tool in latest npm )
npm
and yarn
( by default we use npm
)
Run it with preinstall hook. We support only Example for yarn
"scripts": {
"preinstall": "REQUIRED=yarn npx pm-validator"
...
}
Example for npm
"scripts": {
"preinstall": "npx pm-validator"
...
}