Renée
Renée
Via @blackgate: > Sure: > ```js > const fs = require("fs"); > const browserify = require("browserify"); > browserify("./script.js", { debug: true }) > .transform("babelify", {presets: ["env"], sourceMaps: true}) > .transform("brfs")...
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...
[TODO]
port of https://github.com/nodejs/node/pull/27867
https://github.com/airtap/airtap/releases/tag/v3.0.0
https://nodejs.org/api/events.html#events_events_on_emitter_eventname Introduced in Node.js 13.6.0, `require('events').on` creates an Async Iterator over all the emits of an event.
The upgrade to labeled-stream-splicer@2 in https://github.com/browserify/factor-bundle/commit/532b1e48397a8a2580fa87c6a867b866069ad1b5 broke a test, because of some fun times with stream end timings. The factored files were not written fully by the time the common...
Adds node-style experimental ES modules support. pass `esm: true` to interpret `.mjs` files as ES modules. ES modules get a `rec.esm` property so that later parts in the browserify pipeline...
Since transforms do not get applied to files from the persistent cache (the cached file is already transformed), their 'file' events are not emitted. This is a problem when using...