Skip to content

Commit b69ea05

Browse files
feat: support: $state.eager (#90)
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
1 parent e56159d commit b69ea05

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.changeset/smart-terms-cover.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@sveltejs/mcp": patch
3+
---
4+
5+
feat: support: `$state.eager`

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ bun.lockb
1111
/**/.svelte-kit/*
1212

1313
# Claude Code
14-
.claude/
14+
.claude/
15+
.changeset/

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const gitignore_path = fileURLToPath(new URL('./.gitignore', import.meta.url));
1313
export default /** @type {import("eslint").Linter.Config} */ ([
1414
includeIgnoreFile(gitignore_path),
1515
{
16-
ignores: ['.claude/**/*'],
16+
ignores: ['.claude/**/*', '.changeset/*'],
1717
},
1818
js.configs.recommended,
1919
...ts.configs.recommended,

packages/mcp-server/src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export const base_runes = [
1111
export const nested_runes = [
1212
'$state.raw',
1313
'$state.snapshot',
14+
'$state.eager',
1415
'$effect.pre',
1516
'$effect.tracking',
1617
'$effect.pending',

0 commit comments

Comments
 (0)