Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/actions/setup-tools/action.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: 'Setup Tools'
description: 'Setup tools needed in repo'
name: "Setup Tools"
description: "Setup tools needed in repo"

inputs:
skip-install-on-cache-hit:
description: 'If a Cache Hit happens, skip pnpm install'
description: "If a Cache Hit happens, skip pnpm install"
required: true
default: 'false'
default: "false"

runs:
using: 'composite'
using: "composite"
steps:
- name: Install Node.js
uses: actions/setup-node@v3
Expand Down Expand Up @@ -42,4 +42,4 @@ runs:
- name: Install dependencies
if: inputs.skip-install-on-cache-hit == 'false' || (inputs.skip-install-on-cache-hit == 'true' && steps.cache-pnpm-store.cache-hit == 'false')
shell: bash
run: pnpm install
run: pnpm install --no-frozen-lockfile
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"ci:publish:dev": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --dist-tag dev --no-push --yes"
},
"devDependencies": {
"@capacitor/ios": "next",
"@types/node": "^24.10.1",
"glob": "^13.0.0",
"husky": "^9.1.7",
Expand All @@ -27,7 +26,6 @@
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {},
"workspaces": [
"plugin"
]
Expand Down
2 changes: 1 addition & 1 deletion plugin/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
targets: ["CapacitorGoogleMapsPlugin"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0-beta"),
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
.package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"9.4.0")),
.package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .exact("6.1.0"))
],
Expand Down
10 changes: 5 additions & 5 deletions plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capacitor/google-maps",
"version": "7.2.0",
"version": "8.0.0-alpha.0",
"description": "Google maps on Capacitor",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -59,10 +59,10 @@
"unittest:android": "cd ./unit-tests/android && ./gradlew testDebugUnitTest"
},
"devDependencies": {
"@capacitor/android": "next",
"@capacitor/core": "next",
"@capacitor/android": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/docgen": "0.3.0",
"@capacitor/ios": "next",
"@capacitor/ios": "^8.0.0",
"@ionic/prettier-config": "^4.0.0",
"@types/resize-observer-browser": "^0.1.11",
"@types/supercluster": "^7.1.3",
Expand All @@ -80,7 +80,7 @@
"typescript": "^5.9.3"
},
"peerDependencies": {
"@capacitor/core": ">=8.0.0-beta.0"
"@capacitor/core": ">=8.0.0"
},
"prettier": "@ionic/prettier-config",
"capacitor": {
Expand Down
3 changes: 0 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.