File tree 3 files changed +26
-5
lines changed
3 files changed +26
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @sveltejs/kit ' : patch
3
+ ---
4
+
5
+ fix: include importer in illegal import error message
Original file line number Diff line number Diff line change @@ -352,6 +352,9 @@ async function kit({ svelte_config }) {
352
352
}
353
353
} ;
354
354
355
+ /** @type {Map<string, string> } */
356
+ const import_map = new Map ( ) ;
357
+
355
358
/** @type {import('vite').Plugin } */
356
359
const plugin_virtual_modules = {
357
360
name : 'vite-plugin-sveltekit-virtual-modules' ,
@@ -372,6 +375,8 @@ async function kit({ svelte_config }) {
372
375
`Cannot import ${ id } into service-worker code. Only the modules $service-worker and $env/static/public are available in service workers.`
373
376
) ;
374
377
}
378
+
379
+ import_map . set ( id , importer ) ;
375
380
}
376
381
377
382
// treat $env/static/[public|private] as virtual
@@ -398,7 +403,18 @@ async function kit({ svelte_config }) {
398
403
} )
399
404
) {
400
405
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` ) ;
402
418
}
403
419
}
404
420
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ test.describe.serial('Illegal imports', () => {
17
17
wait_for_started : false
18
18
} ) ;
19
19
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 '
21
21
) ;
22
22
} ) ;
23
23
@@ -26,7 +26,7 @@ test.describe.serial('Illegal imports', () => {
26
26
wait_for_started : false
27
27
} ) ;
28
28
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 '
30
30
) ;
31
31
} ) ;
32
32
@@ -35,7 +35,7 @@ test.describe.serial('Illegal imports', () => {
35
35
wait_for_started : false
36
36
} ) ;
37
37
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 '
39
39
) ;
40
40
} ) ;
41
41
@@ -44,7 +44,7 @@ test.describe.serial('Illegal imports', () => {
44
44
wait_for_started : false
45
45
} ) ;
46
46
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 '
48
48
) ;
49
49
} ) ;
50
50
You can’t perform that action at this time.
0 commit comments