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

HMR context="module" exported const not causing update--have to reload manually #227

Open
JohnnyFun opened this issue Feb 27, 2023 · 0 comments

Comments

@JohnnyFun
Copy link

JohnnyFun commented Feb 27, 2023

To reproduce:

App.svelte

<h1>{contextModuleData.stuff}</h1>

<script>
  import { contextModuleData } from './Test.svelte'
</script>

Test.svelte

<script context="module">
  export const contextModuleData = {
    stuff: 'ok',
  }
</script>

If you have HMR running and update Test.svelte's 'ok' to be 'ok2', the UI continues showing "ok", until you refresh the page.

I'm not sure if this is an issue at the loader level or at a lower level, so this might affect the vite loader and others too.

If you'd prefer a full repo to clone and run, let me know, and I can build one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant