-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Node 4 is no longer supported - package.json "engines" and babel-preset-env target are now Node 6.11.5, as per webpack - The new mode option is now set to activate new webpack defaults - Remove manual usage of plugins which are included by default per mode - ModuleConcatenationPlugin is auto in production mode - NamedModulesPlugin is auto in development mode - Use optimization.noEmitOnErrors instead of NoEmitOnErrorsPlugin - Use optimization.minimize/optimization.minimizer for UglifyJS - Use optimization.runtimeChunk to create a 'runtime' bundle - Use optimization.splitChunks to create a vendor bundle instead of CommonsChunkPlugin, which was removed - Use the new .hooks plugin API for StatusPlugin and InlineRuntimePlugin - Use MiniCssExtractPlugin instead of ExtractTextPlugin - Separate CSS files are now extracted for code splits - Replaced webpack.extractText config with webpack.extractCSS config - this is not backwards-compatible, as plugin options differ - Update config for silencing newer versions of webpack-dev-middleware - Removed webpack.hoisting config, as use of ModuleConcatenationPlugin is now controlled via optimization.concatenateModules - Disable performance hints (for now) - Add a temporary context workaround for loaders which haven't migrated yet
- Loading branch information
Showing
17 changed files
with
133 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ sudo: false | |
|
||
language: node_js | ||
node_js: | ||
- 4 | ||
- 6 | ||
- 8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.