nps-utils
nps-utils copied to clipboard
Utilities for http://npm.im/nps (npm-package-scripts)
Minor update to documentation to rename all instances of `p-s` to `nps` as well as associated URLs.
Update version of concurrently away from buggy 3.6.1 and to more current ^4.1 The version of concurrently that the current package.json locks in is old and has a couple serious...
This prevents issues like https://github.com/pnpm/pnpm/issues/1791
A security vulnerability has recently been reported for a nested dependency: ```nps-utils> concurrently > tree-kill``` https://npmjs.com/advisories/1432 Concurrently has updated it's dependencies to address the vulnerability: https://github.com/kimmobrunfeldt/concurrently/releases/tag/v5.0.2 Updating to `[email protected]` ought...
(There's a closed issue about this but it doesn't seem to have been closed responsively?) cross-env is great but doesn't solve all the potential issues between BASH and PowerShell, among...
Although in most cases you would want to use `--kill-others-on-fail`, I fell in a situation where I would prefer if it was off. Also concurrently has some other options like...
`npsUtils.concurrent.nps('task1', 'task2', 'task3')` works fine, as does the equivalent `npsUtils.concurrent('nps task1', 'nps task2', 'nps task3')` however when you put a `series` inside of `concurrent`, such as the following: ```js npsUtils.concurrent(npsUtils.series('task...
When I run my setup script in circle ci using npm-utils' `concurrent` to `yarn` 3 directories at once it fails. Changing concurrent to series and it passes. I think this...
While refactoring my package.json to use nps I haven noticed that methods like: - concurrent.nps or - series.nps ignore custom config path provided via "nps --config". It would be extremely...