css-entry-webpack-plugin
css-entry-webpack-plugin copied to clipboard
A Webpack plugin that simplifies creation of CSS-only bundles.
Getting this error when used with webpack 4 ``` /app/node_modules/webpack/lib/Compilation.js:1837 ].call(...args); ^ TypeError: Cannot read property 'call' of undefined at Compilation. (/app/node_modules/webpack/lib/Compilation.js:1837:4) at Compilation.deprecated [as applyPlugins] (internal/util.js:47:15) at compiler.plugin (/app/node_modules/css-entry-webpack-plugin/lib/CssEntryPlugin.js:52:68)...
I done as what i was told; but css-entry-webpack-plugin has none effect; This is the code:  This is the result:  My node Vesion: 8.7.0 Webpack Version:^3.8.1
Hi, This plugin silently fails with Webpack 3. Could you take a look at it? thx grofzero
Use `webpack` and `extract-text-webpack-plugin` instances from top-level app instead of including them in the plugin itself. Fixes support for webpack 3.
Hi, when i follow your instruction, there is following error: ``` node_modules\[email protected]\lib\options.js:78 let extensions = Array.isArray(options.extensions) ? [...options.extensions] : [options.extensions]; ^^^ SyntaxError: Unexpected token ... at exports.runInThisContext (vm.js:53:16) at Module._compile...
Webpack supports Node versions >=4.3.0 =5.10. This plugin should support the same versions of Node.
If publicPath is "dist/", both the CSS entry file and assets will be placed in the "dist/" folder, but the CSS file will contain markup with relative paths such as...
If an entry is specified to be included explicitly using "entries" option, ignore the fact that non-CSS resources are specified in the entry.