Don't use separate web entry point: let UMD do it

Using UMD for the web build conflicts with the old `index-web.js` file,
since they both try to do roughly the same thing. This change should
have been part of the recent switch to UMD output for `dist/web`.
This commit is contained in:
Christopher Willis-Ford 2017-09-26 00:39:03 -04:00
parent 762bc0526e
commit c1f66ce132
2 changed files with 2 additions and 16 deletions

View file

@ -31,8 +31,8 @@ module.exports = [
Object.assign({}, base, {
target: 'web',
entry: {
'scratch-storage': './src/index-web.js',
'scratch-storage.min': './src/index-web.js'
'scratch-storage': './src/index.js',
'scratch-storage.min': './src/index.js'
},
output: {
library: 'ScratchStorage',