@capgo/capacitor-launch-navigator 8.0.11 → 8.0.14
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.
|
@@ -10,7 +10,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
|
|
|
10
10
|
@CapacitorPlugin(name = "LaunchNavigator")
|
|
11
11
|
public class LaunchNavigatorPlugin extends Plugin {
|
|
12
12
|
|
|
13
|
-
private final String pluginVersion = "8.0.
|
|
13
|
+
private final String pluginVersion = "8.0.14";
|
|
14
14
|
|
|
15
15
|
private LaunchNavigator implementation;
|
|
16
16
|
|
|
@@ -9,7 +9,7 @@ import MapKit
|
|
|
9
9
|
*/
|
|
10
10
|
@objc(LaunchNavigatorPlugin)
|
|
11
11
|
public class LaunchNavigatorPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
12
|
-
private let pluginVersion: String = "8.0.
|
|
12
|
+
private let pluginVersion: String = "8.0.14"
|
|
13
13
|
public let identifier = "LaunchNavigatorPlugin"
|
|
14
14
|
public let jsName = "LaunchNavigator"
|
|
15
15
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-launch-navigator",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.14",
|
|
4
4
|
"description": "Capacitor plugin which launches native route navigation apps for Android, iOS",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -47,20 +47,20 @@
|
|
|
47
47
|
"gps"
|
|
48
48
|
],
|
|
49
49
|
"scripts": {
|
|
50
|
-
"verify": "
|
|
50
|
+
"verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
|
|
51
51
|
"verify:ios": "xcodebuild -scheme CapgoCapacitorLaunchNavigator -destination generic/platform=iOS",
|
|
52
52
|
"verify:android": "cd android && ./gradlew clean build test && cd ..",
|
|
53
|
-
"verify:web": "
|
|
54
|
-
"lint": "
|
|
55
|
-
"fmt": "
|
|
56
|
-
"eslint": "eslint . --ext ts",
|
|
53
|
+
"verify:web": "bun run build",
|
|
54
|
+
"lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",
|
|
55
|
+
"fmt": "bun run eslint -- --fix && bun run prettier -- --write && bun run swiftlint -- --fix --format",
|
|
56
|
+
"eslint": "eslint . --ext .ts",
|
|
57
57
|
"prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
58
58
|
"swiftlint": "node-swiftlint",
|
|
59
59
|
"docgen": "docgen --api LaunchNavigatorPlugin --output-readme README.md --output-json dist/docs.json",
|
|
60
|
-
"build": "
|
|
60
|
+
"build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.mjs",
|
|
61
61
|
"clean": "rimraf ./dist",
|
|
62
62
|
"watch": "tsc --watch",
|
|
63
|
-
"prepublishOnly": "
|
|
63
|
+
"prepublishOnly": "bun run build",
|
|
64
64
|
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|