We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to Svelte docs module scripts are to be marked with context="module".
context="module"
Instead we look for scope="module".
scope="module"
This is incorrect, and therefore does not mark static variables and methods properly when <script context="module"> is used.
<script context="module">
The text was updated successfully, but these errors were encountered:
Merge pull request #73 from ekhaled/module-scope-correction
2472b5a
fix #72: Use of "context" instead of "scope" when parsing module scripts
Successfully merging a pull request may close this issue.
According to Svelte docs module scripts are to be marked with
context="module"
.Instead we look for
scope="module"
.This is incorrect, and therefore does not mark static variables and methods properly when
<script context="module">
is used.The text was updated successfully, but these errors were encountered: