cordova-plugin-googleplus
Advanced tools
Comparing version 7.0.1 to 7.0.2
@@ -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; | ||
}; | ||
}; |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13828381
32
474
10