From 849c65f21b6906294d115c670b259668a278c4b8 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sun, 8 May 2016 20:57:17 -0400 Subject: [PATCH] Add "Webpack Advanced Techniques" page --- README.md | 2 ++ webpack-advanced-techniques.md | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 webpack-advanced-techniques.md diff --git a/README.md b/README.md index ca569e7..5d326dc 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,8 @@ You might also want to check out my categorized list of Redux-related addons, li - [Immutable Data](immutable-data.md) - [React/Redux Testing](react-redux-testing.md) - [React Performance](react-performance.md) +- [Webpack Advanced Techniques](webpack-advanced-techniques.md) + #### Guidelines, Comparisons, and Discussion - [Thinking in React and Flux](thinking-in-react-and-flux.md) diff --git a/webpack-advanced-techniques.md b/webpack-advanced-techniques.md new file mode 100644 index 0000000..b1f67fe --- /dev/null +++ b/webpack-advanced-techniques.md @@ -0,0 +1,13 @@ +### Webpack Advanced Techniques + +- **Webpack: Build Performance** + https://github.com/webpack/docs/wiki/build-performance + Webpack docs on ways to speed up builds. + +- **How to make your webpack builds 10x faster** + http://www.slideshare.net/trueter/how-to-make-your-webpack-builds-10x-faster + Slideshow that lists a number of approaches for making Webpack builds faster, such as narrowing scope, using the DllPlugin, using HappyPack for parallel builds, and more. + +- **Advanced Frontend Optimization with Webpack** + http://sokra.github.io/slides/frontend-optimize + Slides by Sokra describing ways to improve Webpack builds. \ No newline at end of file