UNPKG

meteor-node-stubs

Version:

Stub implementations of Node built-in modules, a la Browserify

5 lines (4 loc) 216 B
// 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'); };