browserify / watchify

watch mode for browserify builds
Other
1.79k stars 203 forks source link

using watchify with babelify for react transpiling #281

Closed httpNick closed 8 years ago

httpNick commented 8 years ago

Hello,

With browserify I am using the command:

browserify -t [ babelify --presets [ react ] ] app.js -o bundle.js

I installed watchify globally, and replaced browserify with watchify, but nothing happens when I run the command. My terminal just hangs. Am I missing something?

ghost commented 8 years ago

watchify doesn't write what it's doing to stdout by default. It's doing its job, quietly. If you want to see what it's doing, you can pass in the -v flag.

httpNick commented 8 years ago

@substack okay thanks. I'll give it a shot with the flag.