Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
agrieve committed Nov 10, 2015
1 parent 6196f3a commit 9b65acc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cordova/cordova-android
Submodule cordova-android updated from f224b1 to 59a018
2 changes: 1 addition & 1 deletion cordova/cordova-ios
Submodule cordova-ios updated from d4d0c3 to d712fb
1 change: 1 addition & 0 deletions dev-bin/git-up.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ function updateAllPlugins() {
'cordova-plugin-chrome-apps-iosSocketsCommon',
'cordova-plugin-chrome-apps-notifications',
'cordova-plugin-chrome-apps-power',
'cordova-plugin-chrome-apps-proxy',
'cordova-plugin-chrome-apps-pushMessaging',
'cordova-plugin-chrome-apps-socket',
'cordova-plugin-chrome-apps-sockets-tcp',
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
},
"main": "src/cca.js",
"man": "./docs/man/cca.7",
"license": "Apache version 2.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MobileChromeApps/mobile-chrome-apps.git"
},
"dependencies": {
"cca-manifest-logic": "^1.1.4",
"cca-manifest-logic": "^1.1.5",
"chrome-app-developer-tool-client": "^0.0.5",
"cordova": "^5.0.0",
"cordova": "^5.4.0",
"crypto-js": "^3.1.4",
"debounce": "^1.0.0",
"elementtree": "0.1.6",
Expand All @@ -35,7 +35,7 @@
"semver": "^4.1.0",
"shelljs": "^0.4.0",
"underscore": "^1.7.0",
"update-notifier": "^0.4.0",
"update-notifier": "^0.5.0",
"xmldom": "^0.1.19"
},
"files": [
Expand Down
2 changes: 2 additions & 0 deletions src/cca.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ var cordovaLib = cordova.cordova_lib;
var hooks = require('./hooks');

function main() {
cordovaLib.binname = 'cca';

var commandLineFlags = require('./parse-command-line')();
utils.exit.pause_on_exit = commandLineFlags.pause_on_exit;

Expand Down
5 changes: 3 additions & 2 deletions src/pre-prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ module.exports = exports = function prePrepareCommand(context) {
var hasIos = fs.existsSync(path.join('platforms', 'ios'));
if (hasIos) {
var platforms = cordovaLib.cordova_platforms;
var parser = new platforms.ios.parser(path.join('platforms','ios'));
var infoPlistPath = path.join('platforms', 'ios', parser.originalName, parser.originalName + '-Info.plist');
var parser = platforms.getPlatformApi('ios');
var infoPlistPath = path.join('platforms', 'ios', parser._parser.originalName, parser._parser.originalName + '-Info.plist');
console.log('adsf')

This comment has been minimized.

Copy link
@bemasc

bemasc Nov 11, 2015

adsf?

This comment has been minimized.

Copy link
@agrieve

agrieve Nov 17, 2015

Author Member

Now how did that get there... :)

I've zapped it and done a point release.

var infoPlistXml = et.parse(fs.readFileSync(infoPlistPath, 'utf-8'));

var rootPlistElement = infoPlistXml.getroot();
Expand Down

0 comments on commit 9b65acc

Please sign in to comment.