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

cordova-plugin-ionic

Package Overview
Dependencies
Maintainers
5
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-ionic - npm Package Compare versions

Comparing version 5.2.6-1 to 5.2.6

2

package.json
{
"name": "cordova-plugin-ionic",
"version": "5.2.6-1",
"version": "5.2.6",
"cordova": {

@@ -5,0 +5,0 @@ "id": "cordova-plugin-ionic",

@@ -168,3 +168,3 @@ interface Window {

/**
* whether or not the app should in debug mode
* The update method the app should use when checking for available updates
*/

@@ -171,0 +171,0 @@ updateMethod?: boolean;

@@ -15,2 +15,3 @@ /// <reference path="../types/IonicCordova.d.ts" />

declare const WEBVIEW_SERVER_URL: string;
declare const Capacitor: any;

@@ -66,3 +67,3 @@ enum UpdateMethod {

private MANIFEST_FILE = 'pro-manifest.json';
public PLUGIN_VERSION = '5.2.6-1';
public PLUGIN_VERSION = '5.2.6';

@@ -122,3 +123,7 @@ constructor(appInfo: IAppInfo, preferences: ISavedPreferences) {

getBundledAppDir(): string {
return Path.join(cordova.file.applicationDirectory, 'www');
let folder = 'www';
if (typeof (Capacitor) !== 'undefined') {
folder = 'public';
}
return Path.join(cordova.file.applicationDirectory, folder);
}

@@ -125,0 +130,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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