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 7.0.1 to 7.0.2

.DS_Store

10

hooks/ios/install_entitlements.js

@@ -10,3 +10,9 @@ console.log("START Running hook to add iOS Keychain Sharing entitlements (required since iOS 10)");

module.exports = function (context) {
var Q = require('q');
var Q;
try {
Q = require('q');
} catch (e) {
Q = context.requireCordovaModule('q');
}
var deferral = new Q.defer();

@@ -125,2 +131,2 @@

return deferral.promise;
};
};

14

hooks/ios/prerequisites.js
console.error("Google Sign-In prerequisites");
module.exports = function (context) {
var child_process = require('child_process'),
deferral = require('q').defer();
var child_process = require('child_process');
var Q;
try {
Q = require('q');
} catch (e) {
Q = context.requireCordovaModule('q');
}
var deferral = Q.defer();
var output = child_process.exec('npm install', {cwd: __dirname},

@@ -17,2 +25,2 @@ function (error) {

return deferral.promise;
};
};
{
"version": "7.0.1",
"version": "7.0.2",
"name": "cordova-plugin-googleplus",

@@ -4,0 +4,0 @@ "cordova_name": "Google SignIn",

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