mirror of https://github.com/sveltejs/svelte
fix: allow exports with source from script module even if no bind is present (#14620)
* fix: allow exports with source from script module even if no bind is present * chore: move test to validatorpull/14635/head
parent
0a10c59517
commit
38171f60ea
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: allow exports with source from script module even if no bind is present
|
@ -0,0 +1 @@
|
|||||||
|
[]
|
@ -0,0 +1,3 @@
|
|||||||
|
<script module>
|
||||||
|
export { something } from "./something.js";
|
||||||
|
</script>
|
Loading…
Reference in new issue