Compare commits

...

4 Commits

Author SHA1 Message Date
paoloricciuti
230b77027e fix: ignore changeset in prettier 2025-10-24 10:32:45 +02:00
paoloricciuti
2715b36f64 fix: ignore changeset 2025-10-24 10:31:04 +02:00
Paolo Ricciuti
73fea39550 Update changeset for support of $state.eager 2025-10-24 10:26:52 +02:00
baseballyama
88b462e366 feat: support: .eager 2025-10-24 17:19:15 +09:00
4 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"@sveltejs/mcp": patch
---
feat: support: `$state.eager`

View File

@@ -11,4 +11,5 @@ bun.lockb
/**/.svelte-kit/*
# Claude Code
.claude/
.claude/
.changeset/

View File

@@ -13,7 +13,7 @@ const gitignore_path = fileURLToPath(new URL('./.gitignore', import.meta.url));
export default /** @type {import("eslint").Linter.Config} */ ([
includeIgnoreFile(gitignore_path),
{
ignores: ['.claude/**/*'],
ignores: ['.claude/**/*', '.changeset/*'],
},
js.configs.recommended,
...ts.configs.recommended,

View File

@@ -11,6 +11,7 @@ export const base_runes = [
export const nested_runes = [
'$state.raw',
'$state.snapshot',
'$state.eager',
'$effect.pre',
'$effect.tracking',
'$effect.pending',