1.0.0 • Published 8 years ago

dev-or-fail v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

dev-or-fail

CLI utility that fails if NODE_ENV is not set to "development".

Installation

npm i dev-or-fail -S

Usage

Use it to prevent a script from being executed in production, like

"scripts": {
    "clean": "dev-or-fail && do_the_cleaning || echo \"Can't do this in production\"",
    "truncate_tables": "dev-or-fail && trunc_tab || echo \"Can't do this in production\""
}

License

MIT