gulp-rollup-file

0.1.5 • Public • Published

Gulp Rollup File

Gulp wrapper around rollup-plugin-file, to allow passing a file (or vinyl) entry point to Rollup rather than a string.

Installation

npm install --save-dev gulp-rollup-file

Usage

This is mainly designed to be used alongside gulp-process-inline, so we can use Rollup on inline <script> blocks in HTML.

import gulp from 'gulp';
import rollup from 'gulp-rollup-file';
import processInline from 'gulp-process-inline';
 
gulp.task('inline-rollup', () => {
  return gulp.src('./src/*.html')
    .pipe(processInline().extract('script'))
    .pipe(rollup({ format: 'iife' }))
    .pipe(processInline().restore())
    .pipe(gulp.dest('./dist/'));
});

TODO

  • Add tests

License

MIT © Bede Overend

Readme

Keywords

Package Sidebar

Install

npm i gulp-rollup-file

Weekly Downloads

1

Version

0.1.5

License

MIT

Last publish

Collaborators

  • bede
  • seaneking