Skip to content
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]: Extract events #1

Open
jjagielka opened this issue Nov 6, 2023 · 0 comments
Open

[FEAT]: Extract events #1

jjagielka opened this issue Nov 6, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@jjagielka
Copy link

Description

Current extractEvents function catches all on:event exported from the component.

However, components often define emitted events via svelte function:

<script>
  import createEventDispatcher from 'svelte';

  const dispatch = createEventDispatcher();

  dispatch("eventName", customData);
</script>

Those needs to be caught as well.

Additional Information

No response

@jjagielka jjagielka added the enhancement New feature or request label Nov 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant