chore(deps): update dependency svelte-check to v4
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
svelte-check | devDependencies | major | ^3.6.0 -> ^4.0.0 |
Release Notes
sveltejs/language-tools (svelte-check)
v4.0.6
- chore: autotype
const load = ...
declarations (#2540) - chore: provide component instance type in Svelte 5 (#2553)
- chore: support typescript 5.6 (#2545)
- fix: infer object and array shapes from fallback types (#2562)
v4.0.5
- fix: include named exports in svelte 5 type (#2528)
v4.0.4
- fix: relax component constructor type (#2524)
v4.0.3
- breaking(svelte5): only generate function component shape in runes mode (#2517). This means you can no longer just do
Component
in type positions. Instead you need to prepend it withtypeof
. Here's how you do it:- ...when typing a component instance: Before:
let x: Component
. After:let x: ReturnType<typeof Component>
- ...when typing a component constructor/function: Before
let x: typeof Component
. Afterlet x: typeof Component
(no change)
- ...when typing a component instance: Before:
- fix: revert additional two-way-binding checks as they were causing bugs (#2508)
- fix: include files indirectly belonging to a project into correct project (#2488)
- fix: check project files update more aggressively before assigning service (#2518)
- chore: upgrade to chokidar 4 (#2502)
v4.0.2
- fix: ensure components typed through Svelte 5's
Component
interface get proper intellisense
v4.0.1
- fix: remove ancient
process
augmentation from internald.ts
file
v4.0.0
Modification effectuée par Renovate Bot