Hi. I have new trouble to port polymer element. When I run:
pub run custom_element_apigen:update gen.yaml
I get unhandled exception:
3 of 9: lib/src/wysiwyg-e/tools/blockquote.html Unhandled exception: Unable to find mixin WYSIWYG.ToolBehavior. Make sure the mixin file is loaded.
In gen.yaml I add this file to files_to_load section:
It looks like the behavior implementation is missing the @polymerBehavior comment (see here). It needs to have a comment like this so that hydrolysis can find the behavior.
Oh also you shouldn't need to relist it in files_to_load, anything in files_to_generate should get loaded. It was just unable to recognize the behavior at all.
Hi. I have new trouble to port polymer element. When I run:
pub run custom_element_apigen:update gen.yaml
I get unhandled exception:
3 of 9: lib/src/wysiwyg-e/tools/blockquote.html Unhandled exception: Unable to find mixin WYSIWYG.ToolBehavior. Make sure the mixin file is loaded.
In gen.yaml I add this file to files_to_load section:
What am I doing wrong?