Andres Suarez
Andres Suarez
@mattdesl I can't think of a scenario where module-deps would let broken code through the pipeline. I'm going to run my builds this week with: ``` js b.on('reset', function() {...
@substack @mattdesl Turns out that there are 3 cases where you need syntax-error: 1. Dep graph leaf nodes. module-deps->detective skips the acorn parse as part of an optimization when via...
@terinjokes Ah. Interesting. I don't even know how I would measure that. Any ideas?
hey @mattdesl, I figured out how to make the sourcemaps super fast w/o having to do any eval'ing - you still get inline sourcemaps. try it out and let me...
Ah this would work great in watchify (see https://github.com/substack/watchify/issues/56). Don't forget to test it with the CLI not just the API :stuck_out_tongue:
@chad-autry My is to use the fact that `entries` maybe be globs to monitor for new files when implementing it in watchify - that's all.
@chad-autry Not if it's quoted. The use case I see in watchify is to monitor a directory of tests - where each test file needs to be an entry. Watchify...
@KoryNunn if you `noParse: ['clone']`, it'll skip the "insert globals" transform and browserify won't add Buffer or anything. From a cursory look at "clone", it shouldn't be a problem to...
@KoryNunn I looked at https://github.com/pvorb/node-clone/issues/46. Are you sure that works? There's no `GLOBAL` on the browser and browserify only transforms `global`, not `GLOBAL`. FYI: if you rely on `global`, you're...
@KoryNunn, help me understand how this flag would work: Lets say that `clone` added a flag that told browserify not to look for Buffer in that module. Now, some other...