aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/subproviders/webpack.config.js')
-rw-r--r--packages/subproviders/webpack.config.js56
1 files changed, 0 insertions, 56 deletions
diff --git a/packages/subproviders/webpack.config.js b/packages/subproviders/webpack.config.js
deleted file mode 100644
index a73489704..000000000
--- a/packages/subproviders/webpack.config.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * This is to generate the umd bundle only
- */
-const _ = require('lodash');
-const webpack = require('webpack');
-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,
- output: {
- path: path.resolve(__dirname, '_bundles'),
- filename: '[name].js',
- libraryTarget: 'umd',
- library: '0x Subproviders',
- umdNamedDefine: true,
- },
- resolve: {
- extensions: ['.ts', '.js', '.json'],
- },
- devtool: 'source-map',
- plugins: [
- new webpack.optimize.UglifyJsPlugin({
- minimize: true,
- sourceMap: true,
- include: /\.min\.js$/,
- }),
- ],
- module: {
- rules: [
- {
- test: /\.ts$/,
- use: [
- {
- loader: 'awesome-typescript-loader',
- query: {
- declaration: false,
- },
- },
- ],
- exclude: /node_modules/,
- },
- {
- test: /\.json$/,
- loader: 'json-loader',
- },
- ],
- },
-};