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:
parent
db30d79501
commit
e3c176e730
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue