-
-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removes .orig
file, add yml file to Package source exclusions
#289
base: master
Are you sure you want to change the base?
Conversation
.orig
file, add openapi.yml to Package source exclusions.orig
file, add create-api.yml to Package source exclusions
.orig
file, add create-api.yml to Package source exclusions.orig
file, add yml file to Package source exclusions
Code Coverage Report
Generated by 🚫 Danger Swift against 18469ae |
Package.swift
Outdated
.binaryTarget( | ||
name: "create-api", // Find the URL and checksum at https://github.com/createapi/createapi/releases/latest | ||
url: "https://github.com/CreateAPI/CreateAPI/releases/download/0.2.0/create-api.artifactbundle.zip", | ||
checksum: "6f8a3ce099f07eb2655ccaf6f66d8c9a09b74bb2307781c4adec36609ddac009" | ||
), | ||
.plugin( | ||
name: "CreateAPI", | ||
capability: .command( | ||
intent: .custom( | ||
verb: "generate-open-api", | ||
description: "Generates the OpenAPI entities and paths using CreateAPI" | ||
), | ||
permissions: [ | ||
.writeToPackageDirectory(reason: "To output the generated source code") | ||
] | ||
), | ||
dependencies: [ | ||
.target(name: "create-api") | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to delete these, do we?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry that was a local change I make to test a few things, reverted now 👍
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
This reverts commit 18469ae.
A while ago this
.orig
file was committed and merged, possibly after resolving a merge conflict. It is redundant and generates build warnings.The same goes for
create-api.yml
, which is currently part of the Sources folder but is not a swift file, so the compiler complains that it doesn't know how to handle the yml extension.