sagold / handlebars-webpack-plugin

Renders your html-template at build time
161 stars 45 forks source link

Fix compilation.fileDependencies issue closes #28 #29

Closed mkungla closed 6 years ago

mkungla commented 6 years ago

Fix compilation.fileDependencies.concat is not a function. Use compilation.fileDependencies.add instead for Webpack >=4 and fallback to concat since before Webpack 4 fileDepenencies was an array

mkungla commented 6 years ago

this will fix is related to #28

sagold commented 6 years ago

Hi.

I merge it to develop, will add the missing assignment on concat and release the fix after testing.

Thanks for your help.