npm-watch
npm-watch copied to clipboard
run npm scripts when files change
Hi, I find impossible to configure node.js debugger with npm-watch. Could you please add that feature?
currently, my watch command slowly eats memory as it triggers more and more processes. Is there a way to send a kill to previously started process ahead of starting a...
This is waiting on #46 --- This change is [](https://reviewable.io/reviews/m-zuber/npm-watch/43)
The `line` can be a multiline string. This commit changes how the `prefix` is inserted to use a multiline regular expression instead of prepending one to `line`. Fix for the...
considering using this as a wrapper for std: https://github.com/sindresorhus/execa
```json "scripts": { "build": "node build.js", "watch": "npm-watch build" }, "watch": { "build": "*.js" } ``` ```shell npm run watch -- --param=value ``` should effectively do: ```shell npm run build...
It would be nice to be able to specify the signal argument to nodemon, e.g. to set `SIGTERM` instead of the default `SIGUSR1`.
Can I get the path of the changed file and pass it as a parameter to the npm script?
[Feature request] It would be nice if the watcher would also trigger when new files are created, that would match a specific pattern. For example: package.json ```json "watch": { "copy-assets":...
When I use Jest with npm-watch and use inherit: true, npm-watch doesn't show me the failed tests. If I don't set inherit it seems to work but I get no...