mirror of
https://github.com/scratchfoundation/scratch-storage.git
synced 2025-08-06 11:29:26 -04:00
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:
parent
762bc0526e
commit
c1f66ce132
2 changed files with 2 additions and 16 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue