Skip to content

Commit

Permalink
lowers system requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
icanzilb committed Jun 15, 2022
1 parent 047f80e commit 7538683
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import PackageDescription

let package = Package(
name: "DoNotDisturbPlugin",
platforms: [.macOS(.v12)],
platforms: [
.macOS(.v11),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v8)
],
products: [
.plugin(name: "DoNilDisturbPlugin", targets: ["DoNilDisturb"])
],
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The plugin stops you from working on your 9-5 project outside of 9-5 hours:
Add this to your dependencies in your Package.swift:

```swift
.package(url: "https://github.com/icanzilb/DoNilDisturbPlugin.git", from: "0.0.1"),
.package(url: "https://github.com/icanzilb/DoNilDisturbPlugin.git", from: "0.0.2"),
```

**And then**, add the plugin in your target definition(still in Package.swift:
Expand All @@ -18,7 +18,7 @@ Add this to your dependencies in your Package.swift:
.target(
name: "MyTarget",
plugins: [
.plugin(name: "DoNilDisturbPlugin")
.plugin(name: "DoNilDisturbPlugin", package: "DoNilDisturbPlugin")
]
)
```
Expand Down

0 comments on commit 7538683

Please sign in to comment.