Skip to content

Commit f1dbaf7

Browse files
authored
storekit plus (#29)
1 parent 0dc5f83 commit f1dbaf7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Package.swift

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

44
let package = Package(
5-
name: "Storefront",
5+
name: "StoreKitPlus",
66
platforms: [
77
.iOS(.v15), .macOS(.v12), .tvOS(.v15), .watchOS(.v8)
88
],
99
products: [
10-
.library(name: "Storefront", targets: ["Storefront"])
10+
.library(name: "StoreKitPlus", targets: ["StoreKitPlus"])
1111
],
1212
targets: [
13-
.target(name: "Storefront"),
14-
.testTarget(name: "StorefrontTests", dependencies: ["Storefront"])
13+
.target(name: "StoreKitPlus"),
14+
.testTarget(name: "StoreKitPlusTests", dependencies: ["StoreKitPlus"])
1515
]
1616
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
## Storefront
1+
## StoreKitPlus
File renamed without changes.
File renamed without changes.

Tests/StorefrontTests/StorefrontTests.swift renamed to Tests/StoreKitPlusTests/StoreKitPlusTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import XCTest
2-
import Storefront
2+
import StoreKitPlus
33

4-
final class StorefrontTests: XCTestCase {
4+
final class StoreKitPlusTests: XCTestCase {
55
func testEmpty() {
66
}
77

0 commit comments

Comments
 (0)