Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
fix compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Aug 3, 2017
1 parent 11eac0b commit 930c752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const moduleTasks = modules.map((m) => {
return rollup({
entry: `tests/module/${m}.js`,
format: 'iife',
moduleName: m
moduleName: m.replace(/-/g, '_')
})
.pipe(source(`${m}.js`, 'tests/module'))
.pipe(gulp.dest('./tests/module/generated'))
Expand Down Expand Up @@ -83,7 +83,7 @@ function debugify(entry) {
return rollup({
entry: `entrypoints/${entry}.js`,
format: 'iife',
moduleName: '${entry}',
moduleName: `${entry}`.replace(/-/g, '_'),
})
.pipe(source(`${entry}.js`, 'entrypoints'))
.pipe(buffer())
Expand Down

0 comments on commit 930c752

Please sign in to comment.