You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2015/02/09 11:43:35 UTC

[1/4] cordova-cli git commit: CB-8227 CB-8237 CB-8238 Add --save option to 'cordova platform add', 'cordova platform remove' and 'cordova platform update'

Repository: cordova-cli
Updated Branches:
  refs/heads/master 545cac1e0 -> b2020cdee


CB-8227 CB-8237 CB-8238 Add --save option to 'cordova platform add',
'cordova platform remove' and 'cordova platform update'


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

Branch: refs/heads/master
Commit: 871b07086815e8a65606f8f80cb1955c235fec9b
Parents: 7f004b0
Author: Omar Mefire <om...@microsoft.com>
Authored: Fri Jan 2 14:02:07 2015 -0800
Committer: Omar Mefire <om...@microsoft.com>
Committed: Thu Jan 8 22:42:22 2015 -0800

----------------------------------------------------------------------
 doc/platform.txt | 3 +++
 src/cli.js       | 1 +
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/871b0708/doc/platform.txt
----------------------------------------------------------------------
diff --git a/doc/platform.txt b/doc/platform.txt
index 36ee36c..ec63bf1 100644
--- a/doc/platform.txt
+++ b/doc/platform.txt
@@ -6,13 +6,16 @@ Manage project platforms
 
     add <plat-spec> [...].............. add specified platforms
         --usegit ...................... retrieve from git instead of npm registry
+        --save ........................ save specified platforms into config.xml after installing them
 
     remove <platform> [...] ........... remove specified platforms
+        --save ........................ delete specified platforms from config.xml after removing them
 
     list .............................. list all installed and available platforms
     update <platform> ................. update the version of Cordova used for a specific
                                         platform; use after updating the CLI.
         --usegit ...................... retrieve platform from git instead of npm registry
+        --save ........................ save the latest versions for specified platforms into config.xml
 
     check ............................. list platforms which can be updated by `cordova-cli platform update`
 

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/871b0708/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index b962e27..c33157a 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -286,6 +286,7 @@ function cli(inputArgs) {
                             , cli_variables : cli_vars
                             , browserify: args.browserify || false
                             , link: args.link || false
+			    , save: args.save || false
                             };
         cordova.raw[cmd](subcommand, targets, download_opts).done();
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[4/4] cordova-cli git commit: Merge branch 'CB-8227_CB-8237_CB-8238' of of https://github.com/MSOpenTech/cordova-cli

Posted by an...@apache.org.
Merge branch 'CB-8227_CB-8237_CB-8238' of of https://github.com/MSOpenTech/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/b2020cde
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/b2020cde
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/b2020cde

Branch: refs/heads/master
Commit: b2020cdee09997dce5b15b2803a12456f827b714
Parents: 545cac1 802c3e9
Author: Vladimir Kotikov <v-...@microsoft.com>
Authored: Mon Feb 9 13:42:05 2015 +0300
Committer: Vladimir Kotikov <v-...@microsoft.com>
Committed: Mon Feb 9 13:42:44 2015 +0300

----------------------------------------------------------------------
 doc/platform.txt | 6 ++++++
 src/cli.js       | 1 +
 2 files changed, 7 insertions(+)
----------------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/4] cordova-cli git commit: Merge branch 'master' into CB-8227_CB-8237_CB-8238

Posted by an...@apache.org.
Merge branch 'master' into CB-8227_CB-8237_CB-8238

Conflicts:
	doc/platform.txt


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

Branch: refs/heads/master
Commit: 802c3e93c4564b9b5fb334cb6e78a893b62f47ce
Parents: a2efd54 545cac1
Author: Omar Mefire <om...@microsoft.com>
Authored: Tue Feb 3 04:51:06 2015 -0800
Committer: Omar Mefire <om...@microsoft.com>
Committed: Tue Feb 3 04:51:06 2015 -0800

----------------------------------------------------------------------
 .travis.yml      | 23 +++++++++++++++++++++++
 appveyor.yml     | 27 +++++++++++++++++++++++++++
 doc/platform.txt |  7 +++++++
 doc/plugin.txt   |  4 +++-
 doc/run.txt      | 19 ++++++++++++-------
 spec/cli.spec.js |  6 +++---
 src/cli.js       | 24 ++++++++++++++++++++++--
 7 files changed, 97 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/802c3e93/doc/platform.txt
----------------------------------------------------------------------
diff --cc doc/platform.txt
index ec63bf1,d888f1e..3048f8b
--- a/doc/platform.txt
+++ b/doc/platform.txt
@@@ -6,10 -6,12 +6,17 @@@ Manage project platform
  
      add <plat-spec> [...].............. add specified platforms
          --usegit ...................... retrieve from git instead of npm registry
++
 +        --save ........................ save specified platforms into config.xml after installing them
 +
+         --link ........................ when <plat-spec> is a local path, links the platform
+                                         library directly instead of making a copy of it (support
+                                         varies by platform; useful for platform development)
+ 
+ 
++
      remove <platform> [...] ........... remove specified platforms
 +        --save ........................ delete specified platforms from config.xml after removing them
  
      list .............................. list all installed and available platforms
      update <platform> ................. update the version of Cordova used for a specific

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/4] cordova-cli git commit: CB-8227_CB-8237_CB-8238: Fixing space issue

Posted by an...@apache.org.
CB-8227_CB-8237_CB-8238: Fixing space issue


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

Branch: refs/heads/master
Commit: a2efd54a6d0ed3b8015b2b7d000305dc99a49298
Parents: 871b070
Author: Omar Mefire <om...@microsoft.com>
Authored: Tue Feb 3 04:46:40 2015 -0800
Committer: Omar Mefire <om...@microsoft.com>
Committed: Tue Feb 3 04:46:40 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/a2efd54a/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index c33157a..bf515b8 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -286,7 +286,7 @@ function cli(inputArgs) {
                             , cli_variables : cli_vars
                             , browserify: args.browserify || false
                             , link: args.link || false
-			    , save: args.save || false
+                            , save: args.save || false
                             };
         cordova.raw[cmd](subcommand, targets, download_opts).done();
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org