Skip to content

Commit

Permalink
fixup! fixup! fixup! Use main swift
Browse files Browse the repository at this point in the history
  • Loading branch information
shimastripe committed Sep 15, 2024
1 parent 2255642 commit a160a42
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy_docc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
cache-snapshot: false
- name: Build DocC
run: |
swift -version
make build_docc
- name: Setup Pages
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
Expand Down
15 changes: 10 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ let package = Package(
.product(name: "HTTPTypes", package: "swift-http-types"),
.product(name: "HTTPTypesFoundation", package: "swift-http-types"),
.product(name: "KeychainAccess", package: "KeychainAccess"),
]
],
swiftLanguageModes: [.v6]
),
.testTarget(
name: "IAPClientTests",
Expand All @@ -43,21 +44,24 @@ let package = Package(
dependencies: [
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "DependenciesMacros", package: "swift-dependencies"),
]
],
swiftLanguageModes: [.v6]
),
.target(
name: "IAPInterface",
dependencies: [
"IAPCore",
// Use Model...
.product(name: "AppStoreServerLibrary", package: "app-store-server-library-swift"),
]
],
swiftLanguageModes: [.v6]
),
.target(
name: "IAPModel",
dependencies: [
"IAPInterface"
]
],
swiftLanguageModes: [.v6]
),
.testTarget(
name: "IAPModelTests",
Expand All @@ -71,7 +75,8 @@ let package = Package(
],
plugins: [
.plugin(name: "LicensesPlugin", package: "LicensesPlugin")
]
],
swiftLanguageModes: [.v6]
),
.testTarget(
name: "IAPViewTests",
Expand Down

0 comments on commit a160a42

Please sign in to comment.