-
Notifications
You must be signed in to change notification settings - Fork 0
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
Unclear Readme #1
Comments
Hi @BokaTano, This repository contains two examples where you can see how to use this plugin: ExamplePackage and ExampleXcode (Plugin added to Xcode project, used tuist to generate Xcode project/workspace). But let's add this plugin to the existing package, step by step. For example I want to add this plugin to
dependencies: [
.package(url: "https://github.com/pointfreeco/swiftui-navigation", from: "1.1.0"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.1.0"),
+ .package(url: "https://github.com/rock88/PeripheryPlugin", from: "1.0.0"),
], After resolving/reloading the package dependencies, you may see
You can select some specific targets or all of them, let's select all and click
This is all about basic integration. Also I have no idea how to pass this output into the
.target(
name: "ComposableArchitecture",
dependencies: [
...
],
resources: [
.process("Resources/PrivacyInfo.xcprivacy")
- ]
+ ],
+ plugins: [
+ .plugin(name: "PeripheryPlugin", package: "PeripheryPlugin")
+ ]
),
retain_public: true
disable_redundant_public_analysis: true
retain_codable_properties: true Run the
As you can see, in order to see new warnings, you need to build the package, run the This is all about |
Hello 👋, What we were able to do:
So where or what is the missing peace, that we can see the warnings in our project? We also downloaded your example project and it did not work on our machines. I hope we are not bothering, and thanks again for your interesting explanations :) |
Hi @BokaTano, Please make sure you select the Currently, |
On my machine I could not get further than invoking the plugin, it only gives the "Activity Log complete" when I close Xcode. Plug-in command “Periphery”…_2024-06-07T10-46-56_2.txt When my colleague has different logs I will add them :) Edit: My colleagues also have the ever running plugin Problem. |
Hi, just saw your video.
This looks awesome!
How can I get it working, so that I can see warnings in Xcode? I do not fully understand the ReadMe. Do I need to add the RendererPlugin somewhere?
Thanks a lot 👏
The text was updated successfully, but these errors were encountered: