Skip to content

Commit f0ff024

Browse files
authored
chore: fix ci for svelte 3/4 (#1223)
1 parent 534ad78 commit f0ff024

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// IMPORTANT!
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
4-
export const name = 'eslint-plugin-svelte';
5-
export const version = '3.6.0';
4+
export const name = 'eslint-plugin-svelte' as const;
5+
export const version = '3.6.0' as const;

packages/eslint-plugin-svelte/src/types-for-node.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,8 @@ export type ASTNodeListener = {
475475
) => void;
476476
SvelteSpreadAttribute?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
477477
'SvelteSpreadAttribute:exit'?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
478+
SvelteAttachTag?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
479+
'SvelteAttachTag:exit'?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
478480
SvelteDirective?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
479481
'SvelteDirective:exit'?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
480482
SvelteStyleDirective?: (node: AST.SvelteStyleDirective & ASTNodeWithParent) => void;
@@ -938,6 +940,8 @@ export type SvelteNodeListener = {
938940
) => void;
939941
SvelteSpreadAttribute?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
940942
'SvelteSpreadAttribute:exit'?: (node: AST.SvelteSpreadAttribute & ASTNodeWithParent) => void;
943+
SvelteAttachTag?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
944+
'SvelteAttachTag:exit'?: (node: AST.SvelteAttachTag & ASTNodeWithParent) => void;
941945
SvelteDirective?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
942946
'SvelteDirective:exit'?: (node: AST.SvelteDirective & ASTNodeWithParent) => void;
943947
SvelteStyleDirective?: (node: AST.SvelteStyleDirective & ASTNodeWithParent) => void;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"svelte": "^5.0.0"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"svelte": "^5.0.0"
3+
}

0 commit comments

Comments
 (0)