Files
2026-02-10 01:14:19 +00:00

5 lines
216 B
JavaScript

// browserify plugin to swap out the `stream` builtin node shim with the stream-browserify version in this repo.
module.exports = function (b) {
b._mdeps.options.modules.stream = require.resolve('../index.js');
};