browserify missing argument
Project: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/commit/f18caece Tree: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/tree/f18caece Diff: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/diff/f18caece Branch: refs/heads/master Commit: f18caece0cec097dcfa600c86c3123cd09ea94e7 Parents: 7ed83da Author: Tomasz Subik <[email protected]> Authored: Tue Jun 2 19:36:55 2015 +0200 Committer: Jesse MacFadyen <[email protected]> Committed: Mon Aug 24 11:03:39 2015 -0700 ---------------------------------------------------------------------- paramedic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/f18caece/paramedic.js ---------------------------------------------------------------------- diff --git a/paramedic.js b/paramedic.js index 7e623ca..9387a0e 100644 --- a/paramedic.js +++ b/paramedic.js @@ -273,7 +273,7 @@ ParamedicRunner.prototype = { }; var storedCWD = null; -exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout,bSilent) { +exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout,bBrowserify,bSilent,bVerbose) { storedCWD = storedCWD || process.cwd(); if(_platformId && _plugins) { @@ -288,7 +288,7 @@ exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout }; var runner = new ParamedicRunner(_platformId, plugins, callback, !!bJustBuild, - nPort || PORT, msTimeout || TIMEOUT, !!bSilent); + nPort || PORT, msTimeout || TIMEOUT, !!bBrowserify, !!bSilent, !!bVerbose); runner.storedCWD = storedCWD; return runner.run(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
