Skip to content

Commit f26ee51

Browse files
authoredMar 17, 2025··
chore: style context parsing error type fix (#686)
1 parent 2b0ff47 commit f26ee51

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

‎.changeset/good-timers-cheat.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"svelte-eslint-parser": patch
3+
---
4+
5+
chore: style Context parsing error type fix

‎src/parser/style-context.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface StyleContextNoStyleElement {
2323
export interface StyleContextParseError {
2424
status: "parse-error";
2525
sourceLang: string;
26-
error: any;
26+
error: Error;
2727
}
2828

2929
export interface StyleContextSuccess {
@@ -79,7 +79,7 @@ export function parseStyleContext(
7979
from: ctx.parserOptions.filePath,
8080
});
8181
} catch (error) {
82-
return { status: "parse-error", sourceLang, error };
82+
return { status: "parse-error", sourceLang, error: error as Error };
8383
}
8484
fixPostCSSNodeLocation(sourceAst, styleElement);
8585
sourceAst.walk((node) => {

0 commit comments

Comments
 (0)
Please sign in to comment.