You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on ember-cli-addon-docs, which depends on ember-component-css, and I was trying to define a treeForAddonStyles() hook in my index.js. It wasn't getting called and I was curious why, until I finally tracked it down to this addon. Once I remove this addon from my devDependencies, my hook was getting called.
I'm guessing it has something to do with not calling super here, in the call to treeForParentAddonStyles.
The fix could be that easy, but I also know that some of these hooks don't actually have super so it's not that easy.
Anyway, I need to be able to call treeForAddonStyles in my addon so hopefully we can figure out how to make it work!
The text was updated successfully, but these errors were encountered:
👋 maintainers of this excellent addon!
I'm working on
ember-cli-addon-docs
, which depends onember-component-css
, and I was trying to define atreeForAddonStyles()
hook in myindex.js
. It wasn't getting called and I was curious why, until I finally tracked it down to this addon. Once I remove this addon from mydevDependencies
, my hook was getting called.I'm guessing it has something to do with not calling super here, in the call to treeForParentAddonStyles.
The fix could be that easy, but I also know that some of these hooks don't actually have
super
so it's not that easy.Anyway, I need to be able to call
treeForAddonStyles
in my addon so hopefully we can figure out how to make it work!The text was updated successfully, but these errors were encountered: