You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2014/05/07 20:26:13 UTC

git commit: CB-6648 Adding a flag for experimental features

Repository: cordova-cli
Updated Branches:
  refs/heads/master 74f6511d6 -> 17daa3454


CB-6648 Adding a flag for experimental features


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

Branch: refs/heads/master
Commit: 17daa3454cc0cb19577b8ce92e2c9848994f8c6e
Parents: 74f6511
Author: Michal Mocny <mm...@gmail.com>
Authored: Wed May 7 14:11:15 2014 -0400
Committer: Michal Mocny <mm...@gmail.com>
Committed: Wed May 7 14:12:21 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/17daa345/src/cli.js
----------------------------------------------------------------------
diff --git a/src/cli.js b/src/cli.js
index a44673d..adfea88 100644
--- a/src/cli.js
+++ b/src/cli.js
@@ -51,6 +51,7 @@ module.exports = function CLI(inputArgs) {
         .boolean('v')
         .boolean('version')
         .boolean('silent')
+        .boolean('experimental')
         .string('copy-from')
         .alias('copy-from', 'src')
         .string('link-to')
@@ -65,7 +66,8 @@ module.exports = function CLI(inputArgs) {
             platforms: [],
             options: [],
             verbose: (args.d || args.verbose),
-            silent: args.silent
+            silent: args.silent,
+            experimental: args.experimental
         };
 
     // For CrodovaError print only the message without stack trace.