1.2.2 • Published 7 months ago

only-allow-many v1.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

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"
  }
}

If you want to force bun, add:

{
  "scripts": {
    "preinstall": "npx only-allow bun"
  }
}

Multiple package managers

If you want to allow multiple package managers, add:

{
  "scripts": {
    "preinstall": "npx only-allow npm bun"
  }
}

License

MIT

1.2.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago