pinst
Version:
Enable or disable npm postinstall hook
43 lines (28 loc) • 1.24 kB
Markdown
# pinst [](https://github.com/typicode/pinst/actions) [](https://www.npmjs.com/package/pinst)
> `pinst` lets you have `postinstall` hook that runs only in dev 🍺
__Important__ if your project is using npm or pnpm, you can achieve the desired effect by setting a `prepare` hook instead. `pinst` is mainly useful for Yarn 2+ since it doesn't support `prepare` hook. See https://yarnpkg.com/advanced/lifecycle-scripts
## Usage
```js
// package.json
{
"scripts": {
"postinstall": "<some dev only command>",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
}
}
```
_On `prepack`, `postinstall` will be renamed to `_postinstall` (disabled)_
_On `postpack`, it will be renamed back to `postinstall` (enabled)_
## CLI
`pinst` accepts the following flags:
```
--enable, -e Enable postinstall hook
--disable, -d Disable postinstall hook
--silent, -s
```
## Tips
By inverting commands, you can also use `pinst` to enable `postinstall` for your users only and not yourself.
`pinst` also supports `install` alias.
## License
MIT - [Typicode :cactus:](https://github.com/typicode)