Open
Description
Hi,
A bug has hit me while I was trying to process webpack task. After adding a new file to a list of meged *.js an error has appeared:
webpack --mode=production --optimize-minimize
buffer.js:207
throw new ERR_INVALID_ARG_TYPE(
^
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type undefined
at Function.from (buffer.js:207:11)
at writeOut (C:\_DATA\Projects\Inne\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\node_modules\webpack\lib\Compiler.js:410:26)
at asyncLib.forEachLimit (C:\_DATA\Projects\Inne\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\node_modules\webpack\lib\Compiler.js:426:7)
at objectIteratorWithKey (C:\_DATA\Projects\Inne\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\node_modules\neo-async\async.js:3508:9)
at done (C:\_DATA\Projects\Inne\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\node_modules\neo-async\async.js:3526:9)
at C:\_DATA\Projects\Inne\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\DopokiStarczyTchu.pl\node_modules\graceful-fs\graceful-fs.js:45:10
at FSReqWrap.oncomplete (fs.js:145:20)
The reason was using "let" and "const" in added "lazyload.2.x.js". After I has changed all instances to "var" the file has been merged successfully.
The fragment of my webpack config file:
plugins: [
...,
new MergeIntoSingleFilePlugin({
files: [
{
src: [
path.join(__dirname, './wwwroot/assets/_src/js/scripts.js'),
path.join(__dirname, './wwwroot/assets/_src/js/dst.scripts.js')
],
dest: code => {
const min = require("uglify-js").minify(
code, {
sourceMap: { filename: 'site.bundle.min.js', url: 'site.bundle.min.js.map' }
});
return { 'site.bundle.js': code, 'site.bundle.min.js': min.code, 'site.bundle.min.js.map': min.map }
}
},
{
src: [
...,
**path.join(__dirname, './wwwroot/assets/plugins/lazyload/lazyload.2.x.js'),**
...
],
dest: code => {
const min = require("uglify-js").minify(
code, {
sourceMap: { filename: 'vendors.bundle.min.js', url: 'vendors.bundle.min.js.map' }
});
return { 'vendors.bundle.js': code, 'vendors.bundle.min.js': min.code, 'vendors.bundle.min.js.map': min.map }
}
}
]
})
],
Best regards
Demiurg-ls
Metadata
Assignees
Labels
No labels