Closed mundomatt closed 6 years ago
As of this rollup commit (https://github.com/rollup/rollup/pull/1566) the moduleName option was normalized to name, as well as sourceMap renamed to lowercase sourcemap. These changes need to be reflected in the rollup call in RollupTask.js line 104:
moduleName
name
sourceMap
sourcemap
RollupTask.js
return rollup( extend({ entry: this.src.path, cache: cache, sourceMap: true, format: 'iife', moduleName: 'LaravelElixirBundle', plugins: plugins }, this.rollupConfig, this.options) ) .on('bundle', function (bundle) { cache = bundle; });
Hey guys, any chance to fix this? Open since September...
Korko's commit was a right fix, thanks shame to mannually change source code
As of this rollup commit (https://github.com/rollup/rollup/pull/1566) the
moduleName
option was normalized toname
, as well assourceMap
renamed to lowercasesourcemap
. These changes need to be reflected in the rollup call inRollupTask.js
line 104: