Skip to content

Commit 9fce982

Browse files
authored
Merge pull request #22 from cwillisf/fix-web-build
Don't use separate web entry point: let UMD do it
2 parents 762bc05 + c1f66ce commit 9fce982

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

src/index-web.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ module.exports = [
3131
Object.assign({}, base, {
3232
target: 'web',
3333
entry: {
34-
'scratch-storage': './src/index-web.js',
35-
'scratch-storage.min': './src/index-web.js'
34+
'scratch-storage': './src/index.js',
35+
'scratch-storage.min': './src/index.js'
3636
},
3737
output: {
3838
library: 'ScratchStorage',

0 commit comments

Comments
 (0)