From 1d5d13f8325455086041aa52846ce2f66368c9aa Mon Sep 17 00:00:00 2001 From: Kirill Krolik Date: Fri, 1 Sep 2017 23:26:44 +0300 Subject: [PATCH] mark line requiring uglifyjs-webpack-plugin as new The `uglifyjs-webpack-plugin` plugin was installed on previous step, so it should be marked as added line. --- src/content/guides/tree-shaking.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/guides/tree-shaking.md b/src/content/guides/tree-shaking.md index eee52ba1c41e..62d69b5842cd 100644 --- a/src/content/guides/tree-shaking.md +++ b/src/content/guides/tree-shaking.md @@ -5,6 +5,7 @@ contributors: - simon04 - zacanger - alexjoverm + - avant1 related: - title: Tree shaking with webpack 2, TypeScript and Babel url: https://alexjoverm.github.io/2017/03/06/Tree-shaking-with-Webpack-2-TypeScript-and-Babel/ @@ -116,7 +117,7 @@ __webpack.config.js__ ``` diff const path = require('path'); -const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); ++ const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); module.exports = { entry: './src/index.js',