aboutsummaryrefslogtreecommitdiffstats
path: root/webpack.config.js
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-13 00:20:43 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-13 00:20:43 +0800
commit365548e1269cc854275a09b6235d2d096b05ee20 (patch)
treeec536cf7bdbec3e7fb45ed12c7344adc0b8d6b73 /webpack.config.js
parentb1ab696fdd16157702192e280c2e0a840950288a (diff)
downloaddexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar.gz
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar.bz2
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar.lz
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar.xz
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.tar.zst
dexon-sol-tools-365548e1269cc854275a09b6235d2d096b05ee20.zip
Introduce index.ts file which defines public interface
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js
index c1f1a97df..3295c59c6 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',
+ '0x': './src/index.ts',
};
if (production) {
- entry = _.assign({}, entry, {'0x.min': './src/0x.ts'});
+ entry = _.assign({}, entry, {'0x.min': './src/index.ts'});
}
module.exports = {