You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ni...@apache.org on 2015/09/06 16:50:18 UTC

cordova-windows git commit: Fix the case of Q requires.

Repository: cordova-windows
Updated Branches:
  refs/heads/master ac35d581e -> be8c99cd0


Fix the case of Q requires.

This is important for case-sensitive file systems (Linux, and some OSX).. This closes #118


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

Branch: refs/heads/master
Commit: be8c99cd0c40ccfcbe4c4ba51135a4f9b68f7e2a
Parents: ac35d58
Author: Darryl Pogue <da...@dpogue.ca>
Authored: Wed Aug 19 21:58:08 2015 -0700
Committer: Nikhil Khandelwal <ni...@microsoft.com>
Committed: Sun Sep 6 07:50:02 2015 -0700

----------------------------------------------------------------------
 bin/lib/create.js                    | 2 +-
 bin/lib/update.js                    | 2 +-
 template/cordova/lib/MSBuildTools.js | 2 +-
 template/cordova/lib/build.js        | 2 +-
 template/cordova/lib/utils.js        | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/be8c99cd/bin/lib/create.js
----------------------------------------------------------------------
diff --git a/bin/lib/create.js b/bin/lib/create.js
index bd88f2b..7604304 100644
--- a/bin/lib/create.js
+++ b/bin/lib/create.js
@@ -19,7 +19,7 @@
 
 /* jshint sub:true */
 
-var Q     = require('Q'),
+var Q     = require('q'),
     fs    = require('fs'),
     path  = require('path'),
     nopt  = require('nopt'),

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/be8c99cd/bin/lib/update.js
----------------------------------------------------------------------
diff --git a/bin/lib/update.js b/bin/lib/update.js
index 95285ba..91833e8 100644
--- a/bin/lib/update.js
+++ b/bin/lib/update.js
@@ -17,7 +17,7 @@
        under the License.
 */
 
-var Q      = require('Q'),
+var Q      = require('q'),
     fs     = require('fs'),
     path   = require('path'),
     shell   = require('shelljs'),

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/be8c99cd/template/cordova/lib/MSBuildTools.js
----------------------------------------------------------------------
diff --git a/template/cordova/lib/MSBuildTools.js b/template/cordova/lib/MSBuildTools.js
index f4af64d..4d109c7 100644
--- a/template/cordova/lib/MSBuildTools.js
+++ b/template/cordova/lib/MSBuildTools.js
@@ -17,7 +17,7 @@
        under the License.
 */
 
-var Q     = require('Q'),
+var Q     = require('q'),
     path  = require('path'),
     exec  = require('./exec'),
     shell = require('shelljs'),

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/be8c99cd/template/cordova/lib/build.js
----------------------------------------------------------------------
diff --git a/template/cordova/lib/build.js b/template/cordova/lib/build.js
index 458c22a..0c065da 100644
--- a/template/cordova/lib/build.js
+++ b/template/cordova/lib/build.js
@@ -17,7 +17,7 @@
        under the License.
 */
 
-var Q     = require('Q'),
+var Q     = require('q'),
     path  = require('path'),
     nopt  = require('nopt'),
     shell = require('shelljs'),

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/be8c99cd/template/cordova/lib/utils.js
----------------------------------------------------------------------
diff --git a/template/cordova/lib/utils.js b/template/cordova/lib/utils.js
index c2286f7..3918dff 100644
--- a/template/cordova/lib/utils.js
+++ b/template/cordova/lib/utils.js
@@ -19,7 +19,7 @@
 
 /* jshint sub:true */
 
-var Q     = require('Q'),
+var Q     = require('q'),
     fs    = require('fs'),
     path  = require('path'),
     exec  = require('./exec'),


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