Andres Suarez

Results 73 comments of Andres Suarez

I gave it the full node-4.0 compatible ES6 treatment - no destructuring. And since we can count on modern streams and use `class`, I ditched `through2`. If this is good,...

I must be missing something, but if you're using Babel 7, what's the point of this? Why not use `babel-plugin-transform-modules-commonj` with `lazy`? https://babeljs.io/docs/en/babel-plugin-transform-modules-commonjs#lazy

@Venryx, I like the idea, but not `moduleMatchType`. I'm file if it takes regex and/or some filter function. I understand that this makes it not possible to use from a...

I actively use [email protected] with errorify and it works fine. Is this still an issue?

errorify purposefully prevents the `error` event from "bubbling" up to the `b` instance because if there's no listener for it, you'll throw an exception. Whenever you call `bundle()` browserify will...

Do you have a sample project I can clone to repro?

@hikkyu can you consistently repro? can you provide me with a small repro case? what can you tell me about your OS? Also, I noticed that you're using `linter-eslint` with...

What version of eslint do you have?

webpack has an option (https://github.com/webpack/webpack/issues/168) to create sourcemaps that are eval'ed per module. This saves you having to do the sourcemap stitching that browser-pack [does](https://github.com/substack/browser-pack/blob/cb83c2fb857db7d32c2844cd15495c35efabe698/index.js#L55-L67). We could implement something like...