Skip to content

Commit 91d55b1

Browse files
committed
update to tree-sitter 0.24.3
1 parent 1d637f2 commit 91d55b1

File tree

5 files changed

+46
-17
lines changed

5 files changed

+46
-17
lines changed

package.json

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,5 @@
3737
"queries/*",
3838
"src/**"
3939
],
40-
"repository": "https://github.com/glehmann/tree-sitter-earthfile",
41-
"tree-sitter": [
42-
{
43-
"scope": "source.earthfile",
44-
"file-types": [
45-
"Earthfile"
46-
],
47-
"injection-regex": "earthfile",
48-
"injections": "queries/injections.scm",
49-
"highlights": "queries/highlights.scm"
50-
}
51-
]
52-
}
40+
"repository": "https://github.com/glehmann/tree-sitter-earthfile"
41+
}

src/grammar.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/node-types.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tree_sitter/alloc.h

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tree-sitter.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"grammars": [
3+
{
4+
"name": "earthfile",
5+
"camelcase": "Earthfile",
6+
"scope": "source.earthfile",
7+
"path": ".",
8+
"file-types": [
9+
"Earthfile"
10+
],
11+
"highlights": "queries/highlights.scm",
12+
"injections": "queries/injections.scm",
13+
"injection-regex": "earthfile"
14+
}
15+
],
16+
"metadata": {
17+
"version": "0.5.4",
18+
"license": "MIT",
19+
"description": "Earthfile tree-sitter grammar",
20+
"authors": [
21+
{
22+
"name": "Gaëtan Lehmann",
23+
"email": "gaetan.lehmann@gmail.com"
24+
}
25+
],
26+
"links": {
27+
"repository": "https://github.com/glehmann/tree-sitter-earthfile"
28+
}
29+
},
30+
"bindings": {
31+
"c": true,
32+
"go": true,
33+
"node": true,
34+
"python": true,
35+
"rust": true,
36+
"swift": true
37+
}
38+
}

0 commit comments

Comments
 (0)