aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/0x.js/webpack.config.js')
-rw-r--r--packages/0x.js/webpack.config.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/packages/0x.js/webpack.config.js b/packages/0x.js/webpack.config.js
deleted file mode 100644
index 397faa76f..000000000
--- a/packages/0x.js/webpack.config.js
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * This is to generate the umd bundle only
- */
-const _ = require('lodash');
-const TerserPlugin = require('terser-webpack-plugin');
-const path = require('path');
-const production = process.env.NODE_ENV === 'production';
-
-let entry = {
- index: './src/index.ts',
-};
-if (production) {
- entry = _.assign({}, entry, { 'index.min': './src/index.ts' });
-}
-
-module.exports = {
- entry,
- mode: 'production',
- output: {
- path: path.resolve(__dirname, '_bundles'),
- filename: '[name].js',
- libraryTarget: 'umd',
- library: 'ZeroEx',
- umdNamedDefine: true,
- },
- resolve: {
- extensions: ['.ts', '.js', '.json'],
- },
- devtool: 'source-map',
- optimization: {
- minimizer: [
- new TerserPlugin({
- sourceMap: true,
- terserOptions: {
- mangle: {
- reserved: ['BigNumber'],
- },
- },
- }),
- ],
- },
- module: {
- rules: [
- {
- test: /\.ts$/,
- use: [
- {
- loader: 'awesome-typescript-loader',
- // tsconfig.json contains some options required for
- // project references which do not work with webback.
- // We override those options here.
- query: {
- declaration: false,
- declarationMap: false,
- composite: false,
- },
- },
- ],
- exclude: /node_modules/,
- },
- ],
- },
-};