From f0410fc31b284243df0c1a33297004f7a47dd968 Mon Sep 17 00:00:00 2001 From: sgrebnov Date: Mon, 1 Sep 2014 17:55:22 +0400 Subject: [PATCH] CB-7441 Plugman. jsproj files should be treated as xml if used with --- cordova-lib/src/plugman/util/config-changes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cordova-lib/src/plugman/util/config-changes.js b/cordova-lib/src/plugman/util/config-changes.js index 8a580ccf3..c119245e6 100644 --- a/cordova-lib/src/plugman/util/config-changes.js +++ b/cordova-lib/src/plugman/util/config-changes.js @@ -539,7 +539,7 @@ function ConfigFile_load() { var ext = path.extname(filepath); // Windows8 uses an appxmanifest, and wp8 will likely use // the same in a future release - if (ext == '.xml' || ext == '.appxmanifest') { + if (ext == '.xml' || ext == '.appxmanifest' || ext == '.jsproj') { self.type = 'xml'; self.data = xml_helpers.parseElementtreeSync(filepath); } else if (ext == '.pbxproj') {