Skip to content

Commit 125e55a

Browse files
author
nkakuev_cg
committed
adjustments
1 parent 08c1dcb commit 125e55a

File tree

3 files changed

+1140
-32
lines changed

3 files changed

+1140
-32
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"eslint-loader": "^2.1.2",
4848
"eslint-plugin-react-hooks": "^1.6.0",
4949
"file-loader": "^3.0.1",
50+
"jest": "^24.7.1",
5051
"npm-run-all": "^4.1.5",
5152
"prettier": "^1.17.0",
5253
"source-map-loader": "^0.2.4",

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const path = require('path');
22
const webpack = require('webpack');
33
const lintFormatter = require('eslint-formatter-friendly');
4-
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
4+
// const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
55

66
module.exports = {
77
entry: './src/index.tsx',
@@ -57,7 +57,7 @@ module.exports = {
5757
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' }
5858
]
5959
},
60-
plugins: [ new webpack.HotModuleReplacementPlugin(), new webpack.NamedModulesPlugin(), new UglifyJsPlugin() ],
60+
plugins: [ new webpack.HotModuleReplacementPlugin(), new webpack.NamedModulesPlugin() ],
6161

6262
externals: {
6363
react: {

0 commit comments

Comments
 (0)