feat: rename bundle to instant.js and move build to umd dir

This commit is contained in:
fragosti
2018-11-15 16:13:35 -08:00
parent 9adfd1f323
commit fb3c2e1fb0
4 changed files with 11 additions and 7 deletions

View File

@@ -2,11 +2,14 @@ const path = require('path');
const ip = require('ip');
// The common js bundle (not this one) is built using tsc.
// The umd bundle (this one) has a different entrypoint.
const config = {
entry: './src/index.umd.ts',
entry: {
instant: './src/index.umd.ts',
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'public'),
filename: '[name].js',
path: path.resolve(__dirname, 'umd'),
library: 'zeroExInstant',
libraryTarget: 'umd',
},