diff --git a/src/webpack.config.js b/src/webpack.config.js deleted file mode 100644 index 75f8a7ce..00000000 --- a/src/webpack.config.js +++ /dev/null @@ -1,22 +0,0 @@ -'use strict;'; - -const config = require('../app/webpack.config'); -const webpack = require('webpack'); - -module.exports = Object.assign({}, config, { - entry: './src/index.ts', - output: { - filename: 'bundle.js', - path: __dirname + '/../../bundle', - library: 'argo-ui', - libraryTarget: 'umd', - umdNamedDefine: true, - }, - plugins: [ - new webpack.DefinePlugin({ - SYSTEM_INFO: JSON.stringify({ - version: process.env.ARGO_VERSION || 'latest', - }), - }), - ], -});