A Rollup plugin that lets you use any Browserify transform (e.g., brfs, coffeeify) within Rollup. Version 1.0.1 is stable but rarely updated; it bridges gaps where no equivalent Rollup plugin exists. Unlike manual transform replication, this plugin wraps Browserify transforms directly, accepting options like include/exclude patterns. It depends on Rollup's plugin system and the transform package itself. Use when migrating from Browserify to Rollup, but prefer native Rollup plugins for performance and compatibility.
npm install rollup-plugin-browserify-transformVerified import paths — ran on the pinned version, not inferred.
Shows how to use the default export with a Browserify transform (brfs) in Rollup config.
Test transforms thoroughly; prefer native Rollup plugins when available.
Upgrade Rollup to 0.25 or later.
Explicitly set include/exclude to narrow scope and avoid unnecessary transforms.
Run npm install --save-dev rollup-plugin-browserify-transform
Use import browserifyPlugin from 'rollup-plugin-browserify-transform'
Import the transform module and pass the function: import brfs from 'brfs'; browserifyPlugin(brfs)