gulp-rollup-file
v0.1.5
Published
Gulp wrapper around rollup-plugin-file
Downloads
1
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