This commit is contained in:
Philipp Kunz 2016-02-01 00:07:53 +01:00
commit 31d1fae5a2
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ var GulpBrowserBrowserify;
} }
cb(null, file); cb(null, file);
}; };
plugins.browserify(file) plugins.browserify(file, { basedir: file.base })
.bundle(bundleCallback); .bundle(bundleCallback);
}); });
}; };

View File

@ -11,7 +11,7 @@ module GulpBrowserBrowserify {
} }
cb(null,file); cb(null,file);
}; };
plugins.browserify(file) plugins.browserify(file, { basedir: file.base })
.bundle(bundleCallback) .bundle(bundleCallback)
}); });
}; };