From e3c176e7309d2761cdf080c3a72ba5e0d1e80822 Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 11 Jun 2018 21:10:11 +0100 Subject: [PATCH] remove browserify-shim --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index e790aea..54b4674 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -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);