1.1.0 • Published 6 years ago
cli-if v1.1.0
cli-if
Simple node CLI utility that runs the specified command if condition evaluates to true.
Usage
Intended to run inside of an NPM script when a false evaluation should just exit the script
cli-if [compare] [expected] [actual] [runIfTrue]compare: performs a case-sensitive evaluation of two valuesexpected: expected valueactual: actual value to compareexpectedwithrunIfTrue: command that gets executed if condition evaluates to true
Supported Compare Types
- contains
Examples
This will run the command the npm run doSomething
cli-if contains test testing npm run doSomethingThis will exit without running the npm run doSomething command
cli-if contains testing 123 npm run doSomething