Skip to content

Commit d3b4a64

Browse files
committed
Update gitignore and Package.swift
1 parent 05f4b26 commit d3b4a64

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

.gitignore

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
1-
.DS_Store
2-
/.build
3-
/Packages
4-
xcuserdata/
5-
DerivedData/
6-
.swiftpm/
7-
*.xcodeproj
81
*~
2+
3+
Package.resolved
4+
DerivedData/
5+
Thumbs.db
6+
7+
# Dot files/directories (opt-in only)
8+
/.*
9+
!/.github
10+
!/.gitignore
11+
!/.spi.yml
12+
!/.swift-format
13+
!/.swiftformat
14+
!/.swiftlint.yml
15+
16+
# Documentation (opt-in for top-level .md files only)
17+
/*.md
18+
!README.md
19+
!LICENSE.md
20+
!CHANGELOG.md
21+
!CONTRIBUTING.md
22+
!CODE_OF_CONDUCT.md
23+
!SECURITY.md

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let package = Package(
2929
.library(name: .rssDublinCore, targets: [.rssDublinCore]),
3030
],
3131
dependencies: [
32-
.package(path: "../swift-rfc-3986")
32+
.package(url: "https://github.com/swift-standards/swift-rfc-3986", from: "0.1.0")
3333
],
3434
targets: [
3535
.target(

0 commit comments

Comments
 (0)