Skip to content

Commit dcbe422

Browse files
authored
fix: include importer in illegal import error message (#12820)
closes #12550 Uses the resolveId hook to get the importer name before including it in the error message when loading the illegal import in the load hook.
1 parent 723eb8b commit dcbe422

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

.changeset/dry-cows-smash.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sveltejs/kit': patch
3+
---
4+
5+
fix: include importer in illegal import error message

packages/kit/src/exports/vite/index.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ async function kit({ svelte_config }) {
352352
}
353353
};
354354

355+
/** @type {Map<string, string>} */
356+
const import_map = new Map();
357+
355358
/** @type {import('vite').Plugin} */
356359
const plugin_virtual_modules = {
357360
name: 'vite-plugin-sveltekit-virtual-modules',
@@ -372,6 +375,8 @@ async function kit({ svelte_config }) {
372375
`Cannot import ${id} into service-worker code. Only the modules $service-worker and $env/static/public are available in service workers.`
373376
);
374377
}
378+
379+
import_map.set(id, importer);
375380
}
376381

377382
// treat $env/static/[public|private] as virtual
@@ -398,7 +403,18 @@ async function kit({ svelte_config }) {
398403
})
399404
) {
400405
const relative = normalize_id(id, normalized_lib, normalized_cwd);
401-
throw new Error(`Cannot import ${strip_virtual_prefix(relative)} into client-side code`);
406+
407+
const illegal_module = strip_virtual_prefix(relative);
408+
409+
if (import_map.has(illegal_module)) {
410+
const importer = path.relative(
411+
cwd,
412+
/** @type {string} */ (import_map.get(illegal_module))
413+
);
414+
throw new Error(`Cannot import ${illegal_module} into client-side code: ${importer}`);
415+
}
416+
417+
throw new Error(`Cannot import ${illegal_module} into client-side code`);
402418
}
403419
}
404420

packages/kit/test/apps/dev-only/test/test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test.describe.serial('Illegal imports', () => {
1717
wait_for_started: false
1818
});
1919
expect(await page.textContent('.message-body')).toBe(
20-
'Cannot import $env/dynamic/private into client-side code'
20+
'Cannot import $env/dynamic/private into client-side code: src/routes/illegal-imports/env/dynamic-private/+page.svelte'
2121
);
2222
});
2323

@@ -26,7 +26,7 @@ test.describe.serial('Illegal imports', () => {
2626
wait_for_started: false
2727
});
2828
expect(await page.textContent('.message-body')).toBe(
29-
'Cannot import $env/dynamic/private into client-side code'
29+
'Cannot import $env/dynamic/private into client-side code: src/routes/illegal-imports/env/dynamic-private-dynamic-import/+page.svelte'
3030
);
3131
});
3232

@@ -35,7 +35,7 @@ test.describe.serial('Illegal imports', () => {
3535
wait_for_started: false
3636
});
3737
expect(await page.textContent('.message-body')).toBe(
38-
'Cannot import $env/static/private into client-side code'
38+
'Cannot import $env/static/private into client-side code: src/routes/illegal-imports/env/static-private/+page.svelte'
3939
);
4040
});
4141

@@ -44,7 +44,7 @@ test.describe.serial('Illegal imports', () => {
4444
wait_for_started: false
4545
});
4646
expect(await page.textContent('.message-body')).toBe(
47-
'Cannot import $env/static/private into client-side code'
47+
'Cannot import $env/static/private into client-side code: src/routes/illegal-imports/env/static-private-dynamic-import/+page.svelte'
4848
);
4949
});
5050

0 commit comments

Comments
 (0)