Socket
Socket
Sign inDemoInstall

cordova-plugin-localization-strings

Package Overview
Dependencies
43
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.0.4 to 5.0.5

2

package.json
{
"name": "cordova-plugin-localization-strings",
"version": "5.0.4",
"version": "5.0.5",
"description": "Cordova Plugin for handling localization strings on InfoPlist.strings and Localizable.strings on iOS, strings.xml on Android",

@@ -5,0 +5,0 @@ "keywords": [

@@ -225,6 +225,10 @@ var fs = require("fs");

);
var projectFileApi = require(path.join(
var projectFilePath = path.join(
platformPath,
"/cordova/lib/projectFile.js"
));
);
var projectFileExists = fs.existsSync(projectFilePath);
// Starting cordova-ios@7.0.0, projectFile.js is not part of the platform folder anymore and has to be grabbed from node_modules
var projectFileApi = projectFileExists ? require(projectFilePath) : require("cordova-ios/lib/projectFile");
projectFileApi.purgeProjectFileCache(platformPath);

@@ -231,0 +235,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc