Bryan Young
Bryan Young
looks similar to the pull request I made to add multiple loader support and a CXJS loader: https://github.com/alex-seville/blanket/pull/523 after extracting some common functionality, new loaders become much easier: https://github.com/scruffles/blanket/blob/208230900d43d50c7a71b30d5f74445cfae7423a/src/node-loaders/cjsx.js
currently there is no command line switch that will add support for a loader, but you can add support for a loader with 12 lines of code. Just copy and...
I have a local implementation that preserves backwards compatibility. You still have to apply a loader in your config: ``` "config": { "blanket": { "loader": ["./node-loaders/dynamic-loader"] ``` After that, it...
you need to use the coffee loader in your config
We did something similar to that, but it has its downsides. In addition to the complexity of having that extra bit of code, it also doesn't deal well with the...
I've put it down for a bit, but when I pick it back up in a couple weeks, I will need to add some sort of widget re-ordering. I'm a...