0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00

remove browserify-shim

This commit is contained in:
liabru 2018-06-11 21:10:11 +01:00
parent db30d79501
commit e3c176e730

View file

@ -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);