Skip to content

Commit

Permalink
remove browserify-shim
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Jun 11, 2018
1 parent db30d79 commit e3c176e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ var build = function(options) {

var compiled = gulp.src(['src/module/main.js'])
.pipe(through2.obj(function(file, enc, next){
browserify(file.path, { standalone: 'Matter', transform: ['browserify-shim'] })
browserify(file.path, { standalone: 'Matter' })
.bundle(function(err, res){
file.contents = res;
next(null, file);
Expand Down

0 comments on commit e3c176e

Please sign in to comment.