You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2013/10/28 23:54:44 UTC

git commit: CB-4872 - updated default engine names to include windows scripts

Updated Branches:
  refs/heads/master 5dd5091fa -> fa955cf0b


CB-4872 - updated default engine names to include windows scripts


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

Branch: refs/heads/master
Commit: fa955cf0b72142685cac401ec623d89a20d47c0c
Parents: 5dd5091
Author: Tim Kim <ti...@adobe.com>
Authored: Mon Oct 28 15:53:52 2013 -0700
Committer: Tim Kim <ti...@adobe.com>
Committed: Mon Oct 28 15:53:52 2013 -0700

----------------------------------------------------------------------
 src/util/default-engines.js | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/fa955cf0/src/util/default-engines.js
----------------------------------------------------------------------
diff --git a/src/util/default-engines.js b/src/util/default-engines.js
index f7d42e1..2ca8b13 100644
--- a/src/util/default-engines.js
+++ b/src/util/default-engines.js
@@ -19,8 +19,6 @@ module.exports = function(project_dir){
             { 'platform':'wp8', 'scriptSrc': path.join(project_dir,'cordova','version') },
         'cordova-windows8': 
             { 'platform':'windows8', 'scriptSrc': path.join(project_dir,'cordova','version') },
-        
-        // TODO: these scripts have not been made!
         'apple-xcode' : 
             { 'platform':'ios', 'scriptSrc':  path.join(project_dir,'cordova','apple_xcode_version') },
         'apple-ios' : 
@@ -30,6 +28,10 @@ module.exports = function(project_dir){
         'blackberry-ndk' : 
             { 'platform':'blackberry10', 'scriptSrc': path.join(project_dir,'cordova','bb10-ndk-version') },
         'android-sdk' : 
-            { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android_sdk_version') }
+            { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android_sdk_version') },
+        'windows-os' : 
+            { 'platform':'wp7|wp8|windows8', 'scriptSrc': path.join(project_dir,'cordova','win_os_version') },
+        'windows-sdk' : 
+            { 'platform':'wp7|wp8|windows8', 'scriptSrc': path.join(project_dir,'cordova','win_sdk_version') }        
     }
 };