-
-
Notifications
You must be signed in to change notification settings - Fork 6
Internal import of context
from commented out export in components/_internals
#18
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
Comments
I just found the same warnings myself. Here, we're importing But here we never export it: https://github.com/emberjs/ember-legacy-built-in-components/blob/main/addon/components/_internals.ts What's the correct way forward? |
I'm seeing this now since upgrading to Ember 4 and updating my code to use this. I have a component with this import: import { TextArea } from "@ember/legacy-built-in-components"; and the build outputs this twice:
|
➕ |
Got a warning from Embroider about a missing export.
The target-action-support mixin provided by this addon tries to import context here: https://github.com/emberjs/ember-legacy-built-in-components/blob/main/addon/mixins/_target_action_support.js#L7
but the export is commented out here: https://github.com/emberjs/ember-legacy-built-in-components/blob/main/addon/components/_internals.ts#L64
The text was updated successfully, but these errors were encountered: