-
Notifications
You must be signed in to change notification settings - Fork 6
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: support variable axes for google #35
Conversation
Sorry - one last thing! Would you be able to write a test? 🙏 |
Done. Sorry for the long time. Forgot to pull your latest commit on my local machine so spent a long time figuring out why the output on my local machine is different from the output from GitHub actions.. |
test/providers/google.test.ts
Outdated
slnt: ['-15..0'], | ||
CASL: ['0..1'], | ||
CRSV: ['0..1'], | ||
MONO: ['0..1'], |
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.
would it make more sense for the format to be:
slnt: ['-15..0'], | |
CASL: ['0..1'], | |
CRSV: ['0..1'], | |
MONO: ['0..1'], | |
slnt: ['-15', '0'], | |
CASL: ['0', '1'], | |
CRSV: ['0', '1'], | |
MONO: ['0', '1'], |
it feels like the ..
joining is an implementation detail for google that we can add in...
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.
@danielroe Resolved. Sorry for the delay!
Thank you! ❤️ |
@danielroe
Closes #34.
I didn't mean to create another subissue, GitHub didn't ask me for a confirmation when I clicked the "convert to issue" button..