Josh Holbrook

Results 154 comments of Josh Holbrook

looks like it's technically supported https://github.com/jfhbrook/wzrd.in/blob/master/admin.js#L34 but I think you need to know the bundle key https://github.com/jfhbrook/wzrd.in/blob/master/bundler/cache.js#L126-L132 for that to work...

wzrd.in runs on an old version of node. If the demo-ca library depends on es6 features, this would probably be why you're seeing this. I'm open to upgrading (probably about...

I think https://github.com/jfhbrook/wzrd.in/blob/master/multiple.js#L121 this line is wrong.

We hash both here https://github.com/jfhbrook/wzrd.in/blob/master/bundler/cache.js#L33 and here https://github.com/jfhbrook/wzrd.in/blob/master/bundler/cache.js#L18 so we may be hashing some inputs twice and others only once... It's unknown if this is an issue with the docker...

It does a production install https://github.com/jfhbrook/wzrd.in/blob/master/bundler/install.js#L12 meaning no devDeps. Without changing this policy, there's no way around this.

The transforms code won't be included in the browserify bundle unless the browserified module actually requires it.

As far as *why*? The idea is that you shouldn't need, say, a test harness, to browserify a module. This decision was made prior to any support for transforms that...

you *could* just include transforms in dependencies... ...but no, not at this time. There's a major refactor or two that I'd like to merge and deploy before making any other...

So I had a bit of a realization on my way home. I don't plan on building this soon but capturing this use case. This may or may not only...