-
-
Notifications
You must be signed in to change notification settings - Fork 40
refactor: fix CI, use zod v4, and latest method in mcp
#332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8f43508
b0e2fbc
eb1c886
d198ca4
3c6378b
5f8b964
03eef9f
71ad117
1da37ef
f2a7c1e
7e76e37
3b70778
c4b5f1a
ac5e857
a79fb04
a3d66e9
0258f86
19fc40a
3e5f69e
098ef13
72b26b8
e6082c9
1fe759e
8ad6bc6
fb2b0dd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,8 @@ const passingFilePath = path.join(dirname, "fixtures", "passing.js"); | |
| const syntaxErrorFilePath = path.join(dirname, "fixtures", "syntax-error.js"); | ||
|
|
||
| const filePathsJsonSchema = { | ||
| $schema: "http://json-schema.org/draft-07/schema#", | ||
| additionalProperties: false, | ||
|
Comment on lines
+26
to
+27
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I don't add these two lines, the tests fail, so I've added them. However, I'm not sure whether this is considered a user-facing change.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's fine to re-add these lines. These were removed in commit 45842c0 to fix compatibility with version 1.22.0 of |
||
| properties: { | ||
| filePaths: { | ||
| items: { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.