Gulp plugin that integrates Rollup bundling into Gulp pipelines, version 0.2.0 (last released ~2016). It allows using Gulp's streaming file system with Rollup's module bundling, supporting options like cache, external modules, plugins, and output formats (esm, cjs, iife, umd). The package is extremely minimal and does not handle sourcemaps or modern Rollup APIs. It is not actively maintained and lacks support for newer Rollup versions. Compared to alternatives like gulp-better-rollup, this package has a simpler API but fewer features.
npm install gulp-rollup-streamVerified import paths — ran on the pinned version, not inferred.
Basic Gulp task that bundles src/main.js into dist/main.js using Rollup with CommonJS output format.
Upgrade to a maintained plugin like gulp-better-rollup or gulp-rollup.
Use a different plugin that supports sourcemaps, or add gulp-sourcemaps with careful handling.
Pass a valid cache object obtained from a previous bundle via the bundleCb callback.
Switch to an actively maintained plugin.
Run 'npm install gulp-rollup-stream --save-dev' (note: deprecated, consider alternatives).
Use 'import rollup from "gulp-rollup-stream"' or 'const rollup = require("gulp-rollup-stream")'.Downgrade Rollup to 0.x or switch to a plugin that supports modern Rollup.