I'm using Budo to develop a website using Browserify and Babelify like this:
budo src/index.js:static/bundle.js --live -- -t [ babelify --presets [ es2015 ] ]
That works great, except the generated static/bundle.js
isn't actually saved to disk - it's just accessible in the browser. If I remove the path argument:
budo --live -- -t [ babelify --presets [ es2015 ] ]
Then it just serves a local file in static/bundle.js
but doesn't regenerate it.
How do I get it to actually generate and save the file?