Skip to content

Commit

Permalink
Correct output bundle names
Browse files Browse the repository at this point in the history
The Rollup config files were copied from another one of my personal
projects (flip-book), and I had forgotten to change those names.
  • Loading branch information
caleb531 committed Nov 11, 2018
1 parent 4a2f23b commit 9e31edf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
input: 'app/scripts/index.js',
output: {
file: 'public/scripts/index.js',
name: 'flipBook',
name: 'connectFour',
sourcemap: true,
format: 'iife'
},
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
input: 'test/index.js',
output: {
file: 'public/scripts/test.js',
name: 'flipBook',
name: 'connectFour',
sourcemap: true,
format: 'iife'
},
Expand Down

0 comments on commit 9e31edf

Please sign in to comment.