1.2.4 • Published 3 years ago
@clickup/only-allow v1.2.4
only-allow
Force a specific package manager to be used on a project
Usage
Add a preinstall script to your project's package.json.
If you want to force npm, add:
{
  "scripts": {
    "preinstall": "npx only-allow npm"
  }
}If you want to force cnpm, add:
{
  "scripts": {
    "preinstall": "npx only-allow cnpm"
  }
}If you want to force pnpm, add:
{
  "scripts": {
    "preinstall": "npx only-allow pnpm"
  }
}If you want to force yarn, add:
{
  "scripts": {
    "preinstall": "npx only-allow yarn"
  }
}