Skip to content

Commit

Permalink
remove case checking from ci build and remove redudant build flags
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed May 8, 2019
1 parent 07354f1 commit 1d36d0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
10 changes: 2 additions & 8 deletions packages/blockchain-wallet-v4-frontend/webpack.config.ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin
const CleanWebpackPlugin = require('clean-webpack-plugin')
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
const Webpack = require('webpack')
Expand Down Expand Up @@ -71,7 +70,6 @@ module.exports = {
},
plugins: [
new CleanWebpackPlugin([PATHS.ciBuild], { allowExternal: true }),
new CaseSensitivePathsPlugin(),
new Webpack.DefinePlugin({
APP_VERSION: JSON.stringify(require(PATHS.pkgJson).version),
NETWORK_TYPE: JSON.stringify(envConfig.NETWORK_TYPE)
Expand All @@ -89,18 +87,14 @@ module.exports = {
uglifyOptions: {
warnings: false,
compress: {
warnings: false,
keep_fnames: true
},
mangle: {
keep_fnames: true
},
nameCache: null,
toplevel: false,
ie8: false
}
},
parallel: true,
cache: true
cache: false
})
],
concatenateModules: true,
Expand Down
5 changes: 1 addition & 4 deletions packages/blockchain-wallet-v4-frontend/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,7 @@ module.exports = {
},
mangle: {
keep_fnames: true
},
nameCache: null,
toplevel: false,
ie8: false
}
},
parallel: true,
cache: true
Expand Down
5 changes: 1 addition & 4 deletions packages/blockchain-wallet-v4-frontend/webpack.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,7 @@ module.exports = {
},
mangle: {
keep_fnames: true
},
nameCache: null,
toplevel: false,
ie8: false
}
},
parallel: true,
cache: true
Expand Down

0 comments on commit 1d36d0f

Please sign in to comment.