@capgo/capacitor-updater 8.45.1 → 8.45.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,7 +88,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
88
88
  private static final int SPLASH_SCREEN_RETRY_DELAY_MS = 100;
89
89
  private static final int SPLASH_SCREEN_MAX_RETRIES = 20;
90
90
 
91
- private final String pluginVersion = "8.45.1";
91
+ private final String pluginVersion = "8.45.3";
92
92
  private static final String DELAY_CONDITION_PREFERENCES = "";
93
93
 
94
94
  private SharedPreferences.Editor editor;
@@ -72,7 +72,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin {
72
72
  CAPPluginMethod(name: "completeFlexibleUpdate", returnType: CAPPluginReturnPromise)
73
73
  ]
74
74
  public var implementation = CapgoUpdater()
75
- private let pluginVersion: String = "8.45.1"
75
+ private let pluginVersion: String = "8.45.3"
76
76
  static let updateUrlDefault = "https://plugin.capgo.app/updates"
77
77
  static let statsUrlDefault = "https://plugin.capgo.app/stats"
78
78
  static let channelUrlDefault = "https://plugin.capgo.app/channel_self"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-updater",
3
- "version": "8.45.1",
3
+ "version": "8.45.3",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Live update for capacitor apps",
6
6
  "main": "dist/plugin.cjs.js",
@@ -41,23 +41,25 @@
41
41
  "native"
42
42
  ],
43
43
  "scripts": {
44
- "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
44
+ "verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
45
45
  "verify:ios": "xcodebuild -scheme CapgoCapacitorUpdater -destination generic/platform=iOS",
46
46
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
47
- "verify:web": "npm run build",
48
- "test": "npm run test:ios && npm run test:android",
47
+ "verify:web": "bun run build",
48
+ "test": "bun run test:ios && bun run test:android",
49
49
  "test:ios": "./scripts/test-ios.sh",
50
50
  "test:android": "cd android && ./gradlew test && cd ..",
51
- "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
52
- "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
51
+ "test:maestro:android": "./scripts/test-maestro-android.sh",
52
+ "test:maestro:ios": "./scripts/test-maestro-ios.sh",
53
+ "lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",
54
+ "fmt": "bun run eslint -- --fix && bun run prettier -- --write && bun run swiftlint -- --fix --format",
53
55
  "eslint": "eslint . --ext .ts",
54
56
  "prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
55
57
  "swiftlint": "node-swiftlint",
56
58
  "docgen": "node scripts/generate-docs.js",
57
- "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
59
+ "build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.mjs",
58
60
  "clean": "rimraf ./dist",
59
61
  "watch": "tsc --watch",
60
- "prepublishOnly": "npm run build",
62
+ "prepublishOnly": "bun run build",
61
63
  "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
62
64
  },
63
65
  "devDependencies": {