Skip to content

Commit

Permalink
Fix webpack entrypoint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
medialwerk committed Sep 21, 2016
1 parent 8bb2a96 commit 8c31f68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/build.coffee
Expand Up @@ -14,6 +14,6 @@ module.exports = (gulp) ->
library: 'eventric'
filename: 'eventric.js'

gulp.src ['src/index.coffee']
gulp.src ['src/eventric.entry.coffee']
.pipe webpack webpackConfig
.pipe gulp.dest 'dist/release'
1 change: 1 addition & 0 deletions src/eventric.entry.coffee
@@ -0,0 +1 @@
module.exports = require './eventric'

0 comments on commit 8c31f68

Please sign in to comment.