diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-05-24 18:40:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-24 18:40:51 +0800 |
commit | 302a497327296eee08f16b3203794e64a1609b16 (patch) | |
tree | b561d5a5e3be754802b01c1d9557f04c2c02b3fd /webpack.config.js | |
parent | 9008d21407eedf683be91beeb07c14c2113fa798 (diff) | |
parent | 3097f8cdfbcc778c65a0b48dcfa4448767ab3713 (diff) | |
download | dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.gz dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.bz2 dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.lz dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.xz dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.zst dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.zip |
Merge pull request #3 from 0xProject/webpack
Webpack && npm scripts && ignore files
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 000000000..04822d79d --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,40 @@ +/** + * This is to generate the umd bundle only + */ +const webpack = require('webpack'); +const path = require('path'); + +module.exports = { + entry: { + '0x': './src/ts/0x.js.ts', + '0x.min': './src/ts/0x.js.ts' + }, + output: { + path: path.resolve(__dirname, '_bundles'), + filename: '[name].js', + libraryTarget: 'umd', + library: 'ZeroEx', + umdNamedDefine: true, + }, + resolve: { + extensions: ['.ts', '.js'], + }, + devtool: 'source-map', + plugins: [ + new webpack.optimize.UglifyJsPlugin({ + minimize: true, + sourceMap: true, + include: /\.min\.js$/, + }), + ], + module: { + loaders: [{ + test: /\.ts$/, + loader: 'awesome-typescript-loader', + exclude: /node_modules/, + query: { + declaration: false, + }, + }], + }, +}; |