-
-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat: Add support for tauri configuration files #1376
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for knope ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
Nice, thanks! I actually have a Tauri app I maintain, but I use the Cargo.toml version 😁. It would be very handy to increment versions for different platforms independently, though.
TauriConf(TauriConfJson), | ||
TauriMacosConf(TauriConfJson), | ||
TauriWindowsConf(TauriConfJson), | ||
TauriLinuxConf(TauriConfJson), |
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 see what you mean about the 1-1 file type to path being problematic. We should definitely decouple those and let there be multiple file names per type. I'll take a stab at that
|
||
`dependency` isn't supported yet. |
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.
`dependency` isn't supported yet. |
I don't think there is anything dependency-like to version in here in the future.
#[cfg_attr( | ||
feature = "miette", | ||
diagnostic( | ||
code(package_json::deserialize), |
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.
code(package_json::deserialize), | |
code(tauri_conf_json::deserialize), |
This adds Tauri configuration files support for Knope
Closes #1375