Skip to content

Commit

Permalink
fix(): add forgetting comma
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Nov 27, 2024
1 parent 30ee359 commit 852f415
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 56 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ let package = Package(
targets: ["AdMobPlugin"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "main")
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "11.12.0")
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "main"),
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", branch: "main")
],
targets: [
.target(
name: "AdMobPlugin",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm")
.product(name: "AdMob", package: "swift-package-manager-google-mobile-ads")
.product(name: "Cordova", package: "capacitor-swift-pm"),
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads")
],
path: "ios/Sources/AdMobPlugin"),
.testTarget(
Expand Down
181 changes: 137 additions & 44 deletions package-lock.json

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

12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -sdk iphoneos && cd ..",
"verify:ios": "xcodebuild -scheme CapacitorCommunityAdmob -destination generic/platform=iOS",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
Expand All @@ -51,7 +51,7 @@
"@capacitor/ios": "^6.0.0",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^1.0.1",
"@ionic/swiftlint-config": "^1.1.2",
"@ionic/swiftlint-config": "^2.0.0",
"eslint": "^7.11.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
Expand All @@ -61,10 +61,9 @@
"prettier-plugin-java": "~1.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"swiftlint": "^1.0.1",
"swiftlint": "^2.0.0",
"typescript": "~4.1.5"
},
"swiftlint": "@ionic/swiftlint-config",
"dependencies": {
"@capacitor/core": "^6.0.0"
},
Expand All @@ -76,13 +75,10 @@
"*.{java}": [
"npm run prettier -- --write",
"git add"
],
"*.{swift}": [
"npm run swiftlint -- --fix --format",
"git add"
]
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
Expand Down

0 comments on commit 852f415

Please sign in to comment.