Changelog History
Page 6
-
v0.19.0 Changes
- Updated how Encore is exported to support better IDE auto-completion #263 via @florentdestremau
-
v0.18.0 Changes
Added
Encore.addAliases()
andEncore.addExternal()
shortcut methods217 via @Lyrkan
Fixed hash lengths - normalized all to 8 - #216 via @Lyrkan
Added CoffeeScript loader - #201 via @harentius
-
v0.17.0 Changes
Added build notifications by calling
Encore.enableBuildNotifications()
-190 via @Lyrkan
Added Stylus support via
Encore.enableStylusLoader()
- #195 via @mneuhaus
-
v0.16.0 Changes
Added a priority argument to the
addPlugin()
method so that we can (mostly in the future) allow plugins to be ordered, if/when that becomes necessary - #177 via @LyrkanFixed several minor bugs related to extra
.map
files (#170), always having a DefinePlugin enabled (#172), fixing extra instances of the ts-loader (#181) and upgrading a dependency to avoid a deprecation warning (#182) - all via @Lyrkan
-
v0.15.1 Changes
Fixed bug with using
?
in your versioning strategy withaddStyleEntry
- #161 via @LyrkanFixed bug when using
webpack.config.babel.js
with ES6 imports - #167 via @Lyrkan
-
v0.15.0 Changes
Add support for Preact - #144 via @Lyrkan
Added
Encore.configureManifestPlugin()
method - #142 via @SeikyoAdded 5 new methods to configure plugins! #152 via @Lyrkan
Encore.configureDefinePlugin()
Encore.configureExtractTextPlugin()
Encore.configureFriendlyErrorsPlugin()
Encore.configureLoaderOptionsPlugin()
Encore.configureUglifyJsPlugin()
-
v0.14.0 Changes
Added
Encore.configureFilenames()
so that you can fully control the filename patterns for all types of files - #137 via @LyrkanAdded
Encore.configureRuntimeEnvironment()
, which is useful if you need to requirewebpack.config.js
from some non-Encore process (e.g. Karma) - #115 via @Lyrkan
-
v0.13.0 Changes
[BEHAVIOR CHANGE] Image and font files now always include a hash in their filename, and the hash is shorter - #110 via @Lyrkan
Fixed a bug that caused extra comments to be in the final production compiled JavaScript - #132 via @weaverryan
Encore.enablePostCssLoader()
now accepts an options callback -130 via @Lyrkan
Encore.enableLessLoader()
now accepts an options callback -134 via @Lyrkan
Added
Encore.enableForkedTypeScriptTypesChecking()
to enable fork-ts-checker-webpack-plugin for faster typescript type checking - #101 via @davidmpazAdded
Encore.disableImagesLoader()
andEncore.disableFontsLoader()
to totally disable thefile-loader
rules for images and fonts -103 via @Lyrkan
-
v0.12.0 Changes
Fixed a bug with webpack 3.4.0 ("Can't resolve dev") - #114.
Added
--keep-public-path
option todev-server
that allows you to specify that you do not want yourpublicPath
to automatically point at the dev-server URL. Also relaxed the requirements when usingdev-server
so that you can now specify a custom, fully-qualifiedpublicPath
URL - #96Fixed bug where
@import
CSS wouldn't use postcss - #108
-
v0.11.0 Changes
- The
webpack
package was upgraded from version 2.2 to 3.1 #53. Theextract-text-webpack-plugin
package was also upgraded from 2.1 to 3.0.
- The