Skip to content

Commit 90a4e1a

Browse files
committed
Added Package.swift for Swift PM. Moved Date+Manipulations.swift to DateTools/ folder (seemed to be in wrong spot by mistake). Updated .gitignore to include the .build/ folder which is generated from a swift build command.
1 parent b460f5c commit 90a4e1a

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ DerivedData
1616
.idea/
1717
*.hmap
1818
*.xccheckout
19+
.build/
1920

2021
#CocoaPods
2122
Pods

Package.swift

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import PackageDescription
2+
3+
let package = Package(
4+
name: "DateTools",
5+
targets: [
6+
Target(name: "DateTools")
7+
]
8+
)
9+
package.exclude = ["Examples", "Tests"]

0 commit comments

Comments
 (0)