diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-13 01:07:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 01:07:40 +0800 |
commit | 2cac659f8b5766e8009210cee6054bb27616097c (patch) | |
tree | 5bd556655eb8d0d0ceacf87b81def08826349675 /webpack.config.js | |
parent | b1ab696fdd16157702192e280c2e0a840950288a (diff) | |
parent | 6cdd90e18b3a830423ef6b44d02648a98442ba54 (diff) | |
download | dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.gz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.bz2 dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.lz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.xz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.zst dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.zip |
Merge pull request #63 from 0xProject/api-refactor
Api refactor
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js index c1f1a97df..a23e78027 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -7,10 +7,10 @@ const path = require('path'); const production = process.env.NODE_ENV === 'production'; let entry = { - '0x': './src/0x.ts', + 'index': './src/index.ts', }; if (production) { - entry = _.assign({}, entry, {'0x.min': './src/0x.ts'}); + entry = _.assign({}, entry, {'index.min': './src/index.ts'}); } module.exports = { |