Skip to content

Commit 18e93ad

Browse files
fix(ios): fix SPM package name not matching CLI CapApp-SPM generated name (#16)
1 parent 1f2cbcb commit 18e93ad

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/capacitor-plugin/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import PackageDescription
33

44
let package = Package(
5-
name: "FilesystemCapacitor",
5+
name: "CapacitorFilesystem",
66
platforms: [.iOS(.v14)],
77
products: [
88
.library(
9-
name: "FilesystemCapacitor",
9+
name: "CapacitorFilesystem",
1010
targets: ["FilesystemPlugin"])
1111
],
1212
dependencies: [

packages/capacitor-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
],
3232
"scripts": {
3333
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
34-
"verify:ios": "xcodebuild -scheme FilesystemCapacitor -destination generic/platform=iOS",
34+
"verify:ios": "xcodebuild -scheme CapacitorFilesystem -destination generic/platform=iOS",
3535
"verify:android": "cd android && ./gradlew clean build test && cd ..",
3636
"verify:web": "npm run build",
3737
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",

0 commit comments

Comments
 (0)