A Gulp plugin for Rollup that provides a streamlined pipeline integration. Current version 0.0.3, maintained by the community as a candidate for becoming @rollup/gulp. Unlike @rollup/stream, it avoids needing vinyl-source-stream, supports multiple output files per stream, and enables manualChunks. Ships TypeScript types and targets Rollup ^2 and Vinyl ^2.2.1. Suitable for Gulp-based build pipelines requiring Rollup bundling with full flexibility.
npm install rollup-stream-gulpNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic Gulp task that bundles a TypeScript entry point using Rollup and outputs to dist.
Do not pass `input` in options; use gulp.src to set the entry file.
Ensure Rollup version is ^2.x.
Manually check for duplicates in gulp.src.
Use import rollup from 'rollup-stream-gulp' or const { default: rollup } = require('rollup-stream-gulp')Install rollup: npm install rollup@^2
Ensure rollup({}) is called with at least an empty object.