@ua/capacitor-airship 3.1.0 → 4.0.0

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.
@@ -1,4 +1,7 @@
1
- import AirshipFrameworkProxy
1
+
2
+ public import AirshipFrameworkProxy
3
+ public import Foundation
4
+ public import UIKit
2
5
 
3
6
  @objc(AirshipPluginLoader)
4
7
  public class AirshipPluginLoader: NSObject, AirshipPluginLoaderProtocol {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ua/capacitor-airship",
3
- "version": "3.1.0",
3
+ "version": "4.0.0",
4
4
  "description": "Airship capacitor plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -35,31 +35,31 @@
35
35
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
36
36
  "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
37
37
  "eslint": "eslint . --ext ts",
38
- "prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
38
+ "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
39
39
  "build:docs": "typedoc src/index.ts",
40
- "build": "npm run clean && npm run build:docs && tsc && rollup -c rollup.config.js",
40
+ "build": "npm run clean && npm run build:docs && tsc && rollup -c rollup.config.mjs",
41
41
  "clean": "rimraf ./dist",
42
42
  "watch": "tsc --watch",
43
43
  "prepublishOnly": "npm run build"
44
44
  },
45
45
  "devDependencies": {
46
- "@capacitor/android": "^6.0.0",
47
- "@capacitor/core": "^6.0.0",
48
- "@capacitor/ios": "^6.0.0",
49
- "@capacitor/cli": "^6.0.0",
50
- "@ionic/eslint-config": "^0.3.0",
51
- "@ionic/prettier-config": "^1.0.1",
52
- "@ionic/swiftlint-config": "^1.1.2",
53
- "eslint": "^7.11.0",
54
- "prettier": "~2.3.0",
55
- "prettier-plugin-java": "~1.0.2",
56
- "rimraf": "^3.0.2",
57
- "rollup": "^2.32.0",
46
+ "@capacitor/android": "^7.0.0",
47
+ "@capacitor/core": "^7.0.0",
48
+ "@capacitor/ios": "^7.0.0",
49
+ "@capacitor/cli": "^7.0.0",
50
+ "@ionic/eslint-config": "^0.4.0",
51
+ "@ionic/prettier-config": "^4.0.0",
52
+ "@ionic/swiftlint-config": "^2.0.0",
53
+ "eslint": "^8.57.0",
54
+ "prettier": "^3.4.2",
55
+ "prettier-plugin-java": "^2.6.6",
56
+ "rimraf": "^6.0.1",
57
+ "rollup": "^4.30.1",
58
58
  "typescript": "~4.8.0",
59
59
  "typedoc": "0.23.24"
60
60
  },
61
61
  "peerDependencies": {
62
- "@capacitor/core": "^6.0.0"
62
+ "@capacitor/core": ">=7.0.0"
63
63
  },
64
64
  "prettier": "@ionic/prettier-config",
65
65
  "eslintConfig": {