Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-googleplus

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-googleplus - npm Package Compare versions

Comparing version 8.5.0 to 8.5.1

12

hooks/browser/after_prepare.js

@@ -14,2 +14,10 @@ #!/usr/bin/env node

};
var getPreferenceValueFromPackageJson = function (config, name) {
var value = config.match(new RegExp('"' + name + '":\\s"(.*?)"', "i"));
if (value && value[1]) {
return value[1]
} else {
return null
}
};

@@ -23,2 +31,6 @@ var WEB_APPLICATION_CLIENT_ID = '';

WEB_APPLICATION_CLIENT_ID = getPreferenceValue(config, "WEB_APPLICATION_CLIENT_ID");
if (!WEB_APPLICATION_CLIENT_ID) {
var packageJson = fs.readFileSync("package.json").toString();
WEB_APPLICATION_CLIENT_ID = getPreferenceValueFromPackageJson(packageJson, "WEB_APPLICATION_CLIENT_ID");
}
}

@@ -25,0 +37,0 @@

12

package.json
{
"version": "8.5.0",
"version": "8.5.1",
"name": "cordova-plugin-googleplus",

@@ -7,4 +7,10 @@ "cordova_name": "Google SignIn",

"license": "MIT",
"repo": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus.git",
"issue": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus/issues",
"repository": {
"type": "git",
"url": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus.git"
},
"bugs": {
"url": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus/issues"
},
"homepage": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus#readme",
"keywords": [

@@ -11,0 +17,0 @@ "Google",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc