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 9005c26 commit 14655e6Copy full SHA for 14655e6
packages/repl/src/lib/workers/bundler/index.ts
@@ -270,7 +270,8 @@ async function get_bundle(
270
transform(code, id) {
271
if (uid !== current_id) throw ABORT;
272
273
- self.postMessage({ type: 'status', message: `bundling ${id}` });
+ const message = `bundling ${id.replace(VIRTUAL + '/', '').replace(NPM + '/', '')}`;
274
+ self.postMessage({ type: 'status', message });
275
276
if (!/\.(svelte|js)$/.test(id)) return null;
277
0 commit comments