-
Notifications
You must be signed in to change notification settings - Fork 73
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
Update to new Glint addon best practices #246
Update to new Glint addon best practices #246
Conversation
The Glint docs now recommend to export the Registry, see https://typed-ember.gitbook.io/glint/using-glint/ember/authoring-addons
Hi @langalex I've just been given maintainer access and I'm catching up on open PR's. Thanks for the contribution! |
Co-authored-by: Sergey Astapov <[email protected]>
|
||
export default interface EmberSvgJarRegistry { | ||
'svg-jar': typeof SvgJar; | ||
svgJar: typeof SvgJar; |
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.
Don't think this one is needed, as you can't use {{svgJar}}
as a helper?
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.
correct
Thanks @langalex this has been merged and released as 2.4.5 |
The Glint docs now recommend to export the Registry, see https://typed-ember.gitbook.io/glint/using-glint/ember/authoring-addons