one-package-manager
v1.4.1
Published
Enforce consistent use of Yarn or NPM within a team
Downloads
8
Maintainers
Readme
One Package Manager
Enforcing the consistent usage of Yarn or NPM within a team
Summary
This repo is built to enforce a software development team to use either Yarn or NPM within a repo.
Installation
Put the following code in package.json of the intended repo:
{
"scripts": {
"preinstall": "npx one-package-manager"
}
}
Options
To enforce the use of Yarn (default)
{
"scripts": {
"preinstall": "npx one-package-manager --yarn"
}
}
To enforce the use of NPM (default)
{
"scripts": {
"preinstall": "npx one-package-manager --npm"
}
}