-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
add support for sparql #15
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking pretty good; left a few comments
@@ -1,6 +1,6 @@ | |||
# For generating .wasm files for parsers | |||
# See https://www.npmjs.com/package/web-tree-sitter | |||
languages = agda c clojure cpp c-sharp bash go html java javascript json markdown python ruby rust tsx typescript yaml | |||
languages = agda c clojure cpp c-sharp bash go html java javascript json python ruby rust tsx typescript yaml sparql |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
languages = agda c clojure cpp c-sharp bash go html java javascript json python ruby rust tsx typescript yaml sparql | |
languages = agda c clojure cpp c-sharp bash go html java javascript json markdown python ruby rust tsx typescript yaml sparql |
@@ -29,6 +29,7 @@ const languages: { | |||
ruby: { module: "tree-sitter-ruby" }, | |||
rust: { module: "tree-sitter-rust" }, | |||
shellscript: { module: "tree-sitter-bash" }, | |||
sparql: { module: "tree-sitter-yaml" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sparql: { module: "tree-sitter-yaml" }, | |
sparql: { module: "tree-sitter-sparql" }, |
tree-sitter-markdown@^0.7.1: | ||
version "0.7.1" | ||
resolved "https://registry.yarnpkg.com/tree-sitter-markdown/-/tree-sitter-markdown-0.7.1.tgz#9411df0b832a4798808eb1ce3434f1cfee3e2196" | ||
integrity sha512-hB3sEm1JtfoRUzGvknL9RQrS/LJvbrdI9WfGbU8gE6xMjbbAKHfHrNzh4Oo9JxksfUf6UEMxy91acRajEIOnGQ== | ||
dependencies: | ||
nan "^2.14.0" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add this back
yarn-error.log
Outdated
@@ -0,0 +1,2578 @@ | |||
Arguments: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove error log
Fixed in #17 |
trying to add sparql support
have NOT tested this locally
markdown kept having compilation errors