https://github.com/axross/gulp-rollup-loader
https://github.com/axross/gulp-rollup-loader
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/axross/gulp-rollup-loader
- Owner: axross
- License: mit
- Created: 2015-10-21T02:07:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T13:50:22.000Z (almost 10 years ago)
- Last Synced: 2025-01-21T14:47:15.442Z (9 months ago)
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-rollup-loader
Loader and Bundler using the [rollup](https://github.com/rollup/rollup) for the [gulp](https://github.com/gulpjs/gulp).
## Example
```javascript
import gulp from 'gulp';
import rollup from 'gulp-rollup';gulp.task('foo', () => {
rollup.src(...sources)
.bundle({ ...options })
.pipe(...) // some gulp plugins
.pipe(gulp.dest);
});```
## TODO
- [ ] Loading sources using globs
- [ ] Bundling with handy options
- [ ] Returning a vinyl
- [ ] Supporting the sourcemaps with `sourcemap.init({ loadMaps: true })`