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/08/30 01:58:53 UTC

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

Repository: cordova-cli
Updated Branches:
  refs/heads/CB-7001 0715a14cc -> b438aec73
  refs/heads/master 6662888cf -> 367c6d428


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/CB-7001
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
     };
 
 


[2/2] git commit: Updated version and RELEASENOTES.md for release 3.6.0-0.2.8

Posted by st...@apache.org.
 Updated version and RELEASENOTES.md for release 3.6.0-0.2.8


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

Branch: refs/heads/master
Commit: 367c6d4282d9f72c7bd6b2fcdbf5d86f089d104f
Parents: 6662888
Author: Steven Gill <st...@gmail.com>
Authored: Fri Aug 29 16:54:41 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Fri Aug 29 16:54:41 2014 -0700

----------------------------------------------------------------------
 RELEASENOTES.md | 46 +++++++++++++++++++++++++++++++++++++++++++++-
 package.json    |  4 ++--
 2 files changed, 47 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/367c6d42/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index b7e198d..b3b4634 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -178,7 +178,7 @@
 * CB-5031 Add CLI help text for platform update and plugin search
 * CB-5298 Remove redundant requirements check for iOS and Android. The bin/create scripts check.
 * windows8. fixes version number parsing logic
-* CB-4472 Remove <preference> from template config.xml
+* CB-4472 Remove preference from template config.xml
 
 ## 3.2.0-0.3.0
 
@@ -334,3 +334,47 @@ Important note: This version targets Cordova version 3.1.0-rc1.
 - Plugins are now installed serially across all installed platforms, rather than in parallel. This avoids race conditions in dependency installation. [CB-4184](https://issues.apache.org/jira/browse/CB-4184)
 - (WP8) All files from project www dir are now copied into the binary, not the top-level www. This means merges and plugin assets are correctly handled.
 
+
+### 3.6.0-0.2.8 (Aug 29, 2014)
+* adds missing 'fs' reference required for Windows (ln191)
+* [CB-7355] re added single test to test call through to cordova-lib cordova raw create
+* CB-7364 remove duplicate logging initialization for cordova/plugman
+* CB-7363 Do not insist on precise version of cordova-lib
+* [CB-7355] removed create tests which test behaviour of downstream dependencies
+* [CB-7358] cli spec mocks console log to avoid polluting test output while testing
+* CB-7347 document cordova platform add /path/to support
+* CB-7345 add tests to validate documentation
+* CB-7345 improve cli documentation
+* [] refactored test to make use of jasmine's 'toThrow' expectation
+* correct object referenced in tests
+* proper order of initializers, which indicates a bigger problem
+* removed merge conflict
+* moved custom www handling code to a separate function
+* basic tests and structure added to create spec
+* renamed cli create spec more sensibly
+* parse config json moved to a function
+* functional refactor of create with expected input from caller implemented
+* updated tests and cli to pass all tests
+* tracking cli create spec
+* inital commit of cli create command logic in its own file
+* added verbose mode initialization to set up event handlers
+* created init function to handle initalization of underscore and nopt
+* Fixed the tests
+* Added browserify option "download_opts"
+* CB-7260 use newer cordova-lib to get cordova-android 3.5.1, bump version num
+* CB-7249 cordova-cli documentation translation: cordova-cli
+* CB-7001 moved browserify help docs to proper locations
+* CB-7001 added browserify to cordova.txt help doc
+* CB-6024 Document -- for platform options
+* Added browserify flag to cli options
+* checking for browserify flag
+* CB-7220 Support cordova_lib.binname
+* CB-7220 Split cordova help into per feature help files
+* CB-6756 Adds the platforms subcommand for save and restore
+* CB-7100: Use npm based lazy-load by default
+* CB-6127lisa7cordova-plugin-consolecordova-cli documentation translation: cordova-cli
+* Call process.removeAllListeners() in cli spec
+* Add --captureExceptions flag to jasmine
+* Pin jasmine to older version temporarily
+* Fix CB-7069 copy-from & link-to custom uri -> url
+* CB-7002 Incremented package version to -dev

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/367c6d42/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 36a6f7f..ea352c4 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova",
-  "version": "3.5.0-0.2.8-dev",
+  "version": "3.6.0-0.2.8",
   "preferGlobal": "true",
   "description": "Cordova command line interface tool",
   "main": "cordova",
@@ -28,7 +28,7 @@
     "cli"
   ],
   "dependencies": {
-    "cordova-lib": "~0.21.8-dev",
+    "cordova-lib"*: "0.21.8",
     "q": "~0.9",
     "nopt": "~2",
     "underscore":"1.4.4"