@capgo/capacitor-native-navigation 8.0.14 → 8.0.15

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.
@@ -3,7 +3,7 @@ require 'json'
3
3
  package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
4
 
5
5
  Pod::Spec.new do |s|
6
- s.name = 'CapgoNativeNavigation'
6
+ s.name = 'CapgoCapacitorNativeNavigation'
7
7
  s.version = package['version']
8
8
  s.summary = package['description']
9
9
  s.license = package['license']
package/Package.swift CHANGED
@@ -2,11 +2,11 @@
2
2
  import PackageDescription
3
3
 
4
4
  let package = Package(
5
- name: "CapgoNativeNavigation",
5
+ name: "CapgoCapacitorNativeNavigation",
6
6
  platforms: [.iOS(.v15)],
7
7
  products: [
8
8
  .library(
9
- name: "CapgoNativeNavigation",
9
+ name: "CapgoCapacitorNativeNavigation",
10
10
  targets: ["NativeNavigationPlugin"])
11
11
  ],
12
12
  dependencies: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-native-navigation",
3
- "version": "8.0.14",
3
+ "version": "8.0.15",
4
4
  "description": "Capacitor plugin for native navbar, tabbar, and route transition chrome over a WebView.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -14,7 +14,7 @@
14
14
  "ios/Sources",
15
15
  "ios/Tests",
16
16
  "Package.swift",
17
- "CapgoNativeNavigation.podspec"
17
+ "CapgoCapacitorNativeNavigation.podspec"
18
18
  ],
19
19
  "author": "Martin Donadieu <martin@capgo.app>",
20
20
  "license": "MPL-2.0",
@@ -35,7 +35,7 @@
35
35
  ],
36
36
  "scripts": {
37
37
  "verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
38
- "verify:ios": "xcodebuild -scheme CapgoNativeNavigation -destination generic/platform=iOS",
38
+ "verify:ios": "xcodebuild -scheme CapgoCapacitorNativeNavigation -destination generic/platform=iOS",
39
39
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
40
40
  "verify:web": "bun run build",
41
41
  "lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",