gulp-rollup-file

Gulp wrapper around rollup-plugin-file

Usage no npm install needed!

<script type="module">
  import gulpRollupFile from 'https://cdn.skypack.dev/gulp-rollup-file';
</script>

README

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