Matt DesLauriers

Results 224 comments of Matt DesLauriers

Thanks. Here is a simple fix for you: Use `-d public` before `-d .`, so for example: `budo src/app.ts:dist/app.js -d public -d . -d src --live ...` The reason is...

:+1: Definitely worth exploring. A plugin architecture would be cleaner than having budo-less, budo-sass, budo-styl, etc. It would just be aimed at common use cases. Still, it's a bit of...

One idea that was suggested to me is to use `--preset` like babel is doing, to configure common browserify fields: ``` sh budo index --preset=react ``` Would be similar to:...

Hey sorry, this issue totally slipped under my radar. Is it still happening in [email protected]?

Ouch that sounds annoying! It looks like you are specifying glslify as a plugin to Babel right now. Instead you should pass it separately, outside the Babel subarg, as a...

Ah unfortunately I think it’s a bug with glslify. You have to use require() for glslify and ‘path’ module for the source transform to work. Hopefully something we can fix...

Serving index.html is pretty standard with local servers (see http-server for example). Budo generates a default “virtual” HTML for you for convenience, so you can get started with a single...

Should be --forceDefaultIndex. I’m still not sure it’s necessary. I’ll take a look at your repo tomorrow since I believe the “remapping” feature might solve your issue?

Just looked at your repo a bit more, your build script is interesting and something I haven't encountered before. In most cases I don't embed my JS bundle in the...

I am still hesitant to add this feature, it would be odd to add it only for certain flags, and I do not want to add it for every single...