We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af978ec commit 6a57d0dCopy full SHA for 6a57d0d
packages/repl/src/lib/Repl.svelte
@@ -93,14 +93,10 @@
93
svelteVersion
94
});
95
96
- let current_token: Symbol;
97
-
98
async function rebundle() {
99
- const token = (current_token = Symbol());
100
- const result = await bundler!.bundle(workspace.files as File[], {
+ $bundle = await bundler!.bundle(workspace.files as File[], {
101
tailwind: workspace.tailwind
102
103
- if (token === current_token) $bundle = result;
104
}
105
106
async function migrate() {
0 commit comments