You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/07/31 00:18:28 UTC

[1/3] git commit: checking for browserify flag

Repository: cordova-cli
Updated Branches:
  refs/heads/master 88540ec33 -> d158f4054


checking for browserify flag


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/0715a14c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/0715a14c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/0715a14c

Branch: refs/heads/master
Commit: 0715a14cc67529677c314185f045cc0f0ecc8ac9
Parents: 7b45087
Author: Steven Gill <st...@gmail.com>
Authored: Tue Jul 22 16:47:21 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Jul 22 16:47:21 2014 -0700

----------------------------------------------------------------------
 src/cli.js | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/0715a14c/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index 23dbec3..57affdd 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -67,6 +67,7 @@ function cli(inputArgs) {
         , 'device' : Boolean
         , 'emulator': Boolean
         , 'target' : String
+        , 'browserify': Boolean
         };
 
     var shortHands =
@@ -80,6 +81,8 @@ function cli(inputArgs) {
     inputArgs = inputArgs || process.argv;
     var args = nopt(knownOpts, shortHands, inputArgs);
 
+    console.log(args);
+    console.log('cli.js');
     if (args.version) {
         console.log( require('../package').version );
         return;


[3/3] git commit: Merge branch 'CB-7001' of github.com:surajpindoria/cordova-cli

Posted by st...@apache.org.
Merge branch 'CB-7001' of github.com:surajpindoria/cordova-cli


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/d158f405
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/d158f405
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/d158f405

Branch: refs/heads/master
Commit: d158f4054f10655272e49707f297cf5e3c41c5d0
Parents: 88540ec b438aec
Author: Steven Gill <st...@gmail.com>
Authored: Wed Jul 30 14:57:34 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Wed Jul 30 14:57:34 2014 -0700

----------------------------------------------------------------------
 src/cli.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d158f405/src/cli.js
----------------------------------------------------------------------


[2/3] git commit: Added browserify flag to cli options

Posted by st...@apache.org.
Added browserify flag to cli options


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/b438aec7
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/b438aec7
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/b438aec7

Branch: refs/heads/master
Commit: b438aec732fcffe20d8f82fe76459561d9973a94
Parents: 0715a14
Author: Suraj Pindoria <su...@yahoo.com>
Authored: Thu Jul 24 11:22:50 2014 -0700
Committer: Suraj Pindoria <su...@yahoo.com>
Committed: Thu Jul 24 11:22:50 2014 -0700

----------------------------------------------------------------------
 src/cli.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/b438aec7/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index 57affdd..74d4e58 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -81,8 +81,6 @@ function cli(inputArgs) {
     inputArgs = inputArgs || process.argv;
     var args = nopt(knownOpts, shortHands, inputArgs);
 
-    console.log(args);
-    console.log('cli.js');
     if (args.version) {
         console.log( require('../package').version );
         return;
@@ -158,6 +156,7 @@ function cli(inputArgs) {
         options: [],
         verbose: args.verbose || false,
         silent: args.silent || false,
+        browserify: args.browserify || false
     };