watch:build not working
See original GitHub issueIt seems:
nodemon -q -w assets/ --ext '.' --exec 'npm run build'
is causing something weird with npm and I get the default ‘wrong command’ help in the console:
Usage: npm <command>
where <command> is one of:
...
npm@1.4.28 /usr/local/lib/node_modules/npm
on other computers it doesn’t re-build at all. I tried already ‘watch’ from npm, but there the rebuild breaks somewhere and I have to kill processes manually.
Any ideas?
Issue Analytics
- State:
- Created 9 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
fastlane/watchbuild: Get a notification once your ... - GitHub
WatchBuild lets you know as soon as it is done. WatchBuild is a simple standalone tool that shows a notification once your newly...
Read more >Angular: Watch Build for Changes - JavaScript in Plain English
Why build and deploy on a separate web server. In a sample use case, imagine creating an installable progressive web app (PWA). The...
Read more >iPhone is busy: Making Apple Watch ready for development
iphone tries to activate my apple watch 1 to no avail and they both download in half a day! How can I solve...
Read more >Apple Watch: Build it & They Will Come… Or Will They? | LoadProof
That's the problem with the Apple Watch: the technological nature of it means that it will be outdated quickly. The high-end audience that...
Read more >clojure - boot-clj watch build -> run jar - ok -> change code
Caused by: java.io.FileNotFoundException: Could not locate my_dir/foo__init.class or my_dir/foo.clj on classpath. Please check that namespaces ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It says the command run was
npm watch build
. That doesn’t look right - it should benpm run watch:build
. What does your modified package.json look like?