webpack-with-common-libs
webpack-with-common-libs copied to clipboard
webpack with some common libraries
Says: ``` Warning: Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. - configuration.entry should be one of these: object {...
It is `myConfig.devtool = "sourcemap"`. But I have seen in [webpack docs](https://webpack.github.io/docs/configuration.html#devtool) it is **`source-map`** They are different all right? It doesn't matter?
See https://github.com/webpack/grunt-webpack/commit/b4ba478562c70c41c0e50cc08479fa7b047daca7
Prevent `TypeError: Cannot read property 'concat' of undefined` if no plugins are specified in webpack.config.js
If, like me, one already has their `publicPath` configured with a leading slash in `webpack.config.js`, adding another slash breaks the configuration.
The webpage "plugins" for gulp state, "No need for a gulp plugin. Just use webpack directly." but your examples don't **just** use WebPack directly, they miss out on the point...
Usual gulp tasks pipe files allowing me to trigger a reload at the end. How could that be applied using the following snippet from your sample files: ``` gulp.task("webpack:build-dev", function()...