gulp-rollup-lightweight
1.0.11 • Public • Published
gulp-rollup-lightweight
A Gulp plugin that makes working with Rollup easy!
- Supports latest version of gulp (CLI 2.0.1 & local 4.0.0)
- Supports latest version of rollup (CLI v1.4.1)
It's a thin light-weight wrapper around the Rollup JS API that wraps
the Rollup Promise in a Readable Stream.
Installation
npm install --save-dev gulp-rollup-lightweight
Basic Usage
const { dest } = require('gulp');
const rollup = require('gulp-rollup-lightweight');
const source = require('vinyl-source-stream');
function bundle() {
return rollup({
input: './src/main.js',
output: {
format: 'umd'
}
})
.pipe(source('app.js'))
.pipe(dest('./dist'))
}
Usage for a mixture of ES6 & CJS Modules
const { dest } = require('gulp');
const rollup = require('gulp-rollup-lightweight');
const source = require('vinyl-source-stream');
const resolve = require('rollup-plugin-node-resolve');
const commonjs = require('rollup-plugin-commonjs')
function bundle() {
return rollup({
input: './src/main.js',
output: {
format: 'umd'
},
plugins: [
resolve(),
commonjs()
]
})
.pipe(source('app.js'))
.pipe(dest('./dist'))
}
Usage with custom Rollup
const { dest } = require('gulp');
const rollup = require('gulp-rollup-lightweight');
const source = require('vinyl-source-stream');
function bundle() {
return rollup({
rollup: require('rollup'),
input: './src/main.js',
output: {
format: 'umd'
}
})
.pipe(source('app.js'))
.pipe(dest('./dist'))
}
Dependencies (1)
Dev Dependencies (0)
Package Sidebar
Install
npm i gulp-rollup-lightweight
Weekly Downloads