diff options
author | Fabio B <kandinsky454@protonmail.ch> | 2019-01-17 23:56:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-17 23:56:01 +0800 |
commit | e31d17ef792d74220ab565b3677beaa747113992 (patch) | |
tree | 39e6499ac7a82a4d86d9c23b62e648161159bb67 /packages/dev-tools-pages/webpack.config.js | |
parent | c09825660c04f6a3b46dcb5139caa856859a5f7a (diff) | |
parent | 7b2a9ba698034dfe9dde909753223fcd4a520337 (diff) | |
download | dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar.gz dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar.bz2 dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar.lz dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar.xz dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.tar.zst dexon-sol-tools-e31d17ef792d74220ab565b3677beaa747113992.zip |
Merge pull request #1509 from 0xProject/fix/dev-tools-pages/finalTouches
Dev Tools Pages - Final Touches
Diffstat (limited to 'packages/dev-tools-pages/webpack.config.js')
-rw-r--r-- | packages/dev-tools-pages/webpack.config.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/dev-tools-pages/webpack.config.js b/packages/dev-tools-pages/webpack.config.js index 640297770..ef2f98cf2 100644 --- a/packages/dev-tools-pages/webpack.config.js +++ b/packages/dev-tools-pages/webpack.config.js @@ -3,7 +3,6 @@ const webpack = require('webpack'); const TerserPlugin = require('terser-webpack-plugin'); const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; const HtmlWebpackPlugin = require('html-webpack-plugin'); -const childProcess = require('child_process'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); @@ -12,7 +11,7 @@ const pages = require('./pages'); const config = { entry: { compiler: './ts/pages/compiler.tsx', - cov: './ts/pages/cov.tsx', + coverage: './ts/pages/coverage.tsx', profiler: './ts/pages/profiler.tsx', trace: './ts/pages/trace.tsx', }, |