gulp-better-rollup
gulp-better-rollup copied to clipboard
📦 Better Gulp plugin for Rollup ES6 module bundler
I'm using rollup@2 with this lib for a while now and it works great. With npm@7 I can't run `npm update` anymore because it violates this peerDependencies rule.
Any plans on updating your library to Rollup 2 ?
i keep getting Unknown input options: globals.
Right now, one has to see the git log to see what's changed between releases. Having at least git tags, will make the comparison easy.
Despite setting externals and globals, I am still getting this warning: `(!) No name was provided for external module 'jquery' in options.globals – guessing '$'` Example of the task in...
As it stands, I rarely currently use the following gulp config: ```js 'use strict'; const gulp = require('gulp'); const when = require('gulp-if'); const babel = require('rollup-plugin-babel'); const commonjs = require('rollup-plugin-commonjs');...
I'm getting a PARSE_ERROR that seems to be for a binary file and I have no idea what it is. The only hint i have is `loc: [object Object]`
Hey, how can I minify the script using uglify or other similar? I'm currently doing: ```js gulp.task("default", function() { process.env.NODE_ENV = "release"; return ( gulp. src("./src/lazyload.js"). pipe(sourcemaps.init()). // ----------- linting...
Rollup has an `experimentalCodeSplitting` option: >true or false (defaults to false) – enables you to specify multiple entry points. If this option is enabled, input can be set to an...