-
-
Notifications
You must be signed in to change notification settings - Fork 39
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 version key into palette.json
#91
Conversation
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.
love it 👍
Fix the CI 👍 |
"Destructuring in exports is not supported. Instead of destructuring, export each symbol individually." ref: https://jsr.io/docs/about-slow-types#typescript-restrictions
fc4035a
to
bf7dbbd
Compare
Updated the We don't want this to be a breaking change so I've just added another export /**
* The full Catppuccin palette with the current version and all flavors.
*/
export type CatppuccinPalette = {
version: string;
} & Flavors<CatppuccinFlavor>; However, don't really see a reason to break it right now and I believe users can alias the import |
palette.json
palette.json
palette.json
This PR adds the current version of the palette JSON into the JSON itself.
Setting as draft for now to make sure the method in which we get the JSON and update it is how we want it.