browser-pack
browser-pack copied to clipboard
pack node-style source files from a json stream into a browser bundle
Hi, we use the following command line: uglifyjs -m --ie8 -c sequences=true,unused=false,toplevel=true --source-map --output _prelude.js < prelude.js Could you please update to newer uglify.js ? Bonus point we improve prelude...
(should) fix substack/node-browserify#475
recently the prelude was updated, this didn't break browser-unpack but it could have and we wouldn't have known until someone reported it. adding a test that uses browser-unpack so that...
Right now, browserify includes the compressed code in the source map, which isn't very helpful. It'd be nice to include a prelude.js.map with the package.
[TODO]
If you, from an entry file, tries to require a module from an external bundle which in turn requires a module from the first bundle, it breaks. This fixes this...
This pr resolves https://github.com/substack/node-browserify/issues/976 It only makes the prelude 23 bytes longer, this will help more node modules work in the browser by default.
When minifying and concatenating files the missing trailing semi-colon can create side effects resulting in bugs.
This allows people to browserify a module that requires a module that has already been bundled using `browserify --standalone`. This is becoming increasingly popular now that browserify is seen as...