Skip to content

Commit

Permalink
decapitalize
Browse files Browse the repository at this point in the history
  • Loading branch information
twof committed Oct 24, 2020
1 parent b1205f9 commit a62a2ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- id: downstream
name: Downstream
description: Alerts the user to downstream dependencies of the files updated
entry: Downstream
entry: downstream
language: swift
verbose: true
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PackageDescription

let package = Package(
name: "Downstream",
name: "downstream",
dependencies: [
.package(url: "https://github.com/jpsim/Yams.git", from: "4.0.0"),
.package(url: "https://github.com/JohnSundell/Files", from: "4.0.0")
Expand All @@ -13,10 +13,10 @@ let package = Package(
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Downstream",
name: "downstream",
dependencies: ["Yams", "Files"]),
.testTarget(
name: "DownstreamTests",
dependencies: ["Downstream"]),
dependencies: ["downstream"]),
]
)

0 comments on commit a62a2ca

Please sign in to comment.