webpack-encore
webpack-encore copied to clipboard
A simple but powerful API for processing & compiling assets built around Webpack
The https://github.com/johnagan/clean-webpack-plugin has a `beforeEmit` option that default to false. When this is true, it deletes the files later - right before emit. This means that the time between when...
(Sorry if the info is already somewhere in the docs, I searched but did not find...) When we have a main template (which is never used on its own but...
I got a cms template that is build by Webpack Encore. It needs a main css style file that I can change the name to what ever I like (so...
When running tests for Encore, the deprecation and warnings triggered by functional tests appear in the test output, which can be quite confusing.
While working on the new version of https://github.com/symfony/stimulus-bridge, I noticed some dead code from https://github.com/symfony/webpack-encore/pull/1062:
When `--https` is set using command line, https options in dev server configuration are overriden and generated certificate is used instead of the one provided. If `--https` is not set...
`.babelrc` files don't apply to the `node_modules` folder which can lead to unexpected behavior if `configureBabel()` is called with the `includeNodeModules` option. We should recommend users to create a project-wide...
https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md
Encore creates a default output configuration. I cannot change an entries of with the API. The ones I'm interested in are the library settings. https://webpack.js.org/configuration/output#outputlibrary https://webpack.js.org/configuration/output#outputlibraryexport https://webpack.js.org/configuration/output#outputlibrarytarget https://webpack.js.org/configuration/output#outputauxiliarycomment https://webpack.js.org/configuration/output#outputumdnameddefine https://webpack.js.org/configuration/output#outputglobalobject...
I have some static javascript files and images that change from time to time by developers. However, these aren't imported (or required) through any of the js entry points. I...