Issue with tuist with v2.4.1
#370
-
Hi there! :) I'm working with tuist to setup my project. I've tried to upgrade swift-markdown-ui from
I've tried adding it manually but it goes through the rabbit hole and I ended up editing a lot of files with the error moving to a new one each time. Any ideas on how to fix this? :) Thanks for your kind help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @ladislas, There is an open issue for the The workaround is to add the let project = Project(
name: "MyApp",
organizationName: "MyOrg",
packages: [
// workaround for https://github.com/tuist/tuist/issues/6879
.remote(url: "https://github.com/gonzalezreal/swift-markdown-ui", requirement: .upToNextMajor(from: "2.4.1")),
],
// ...
) |
Beta Was this translation helpful? Give feedback.
Hi @ladislas,
There is an open issue for the
swift-cmark
dependency in the Tuist project:tuist/tuist#6879
The workaround is to add the
swift-markdown-ui
as a regular SPM dependency in theProject
initializer: