Skip to content

Commit

Permalink
test: trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis6991 committed Feb 13, 2024
1 parent e6f7dc3 commit 0e49597
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"targets": [
{
"target_name": "tree_sitter_TCL_binding",
"target_name": "tree_sitter_tcl_binding",
"include_dirs": [
"<!(node -e \"require('nan')\")",
"src"
],
"sources": [
"bindings/node/binding.cc",
"src/parser.c",
# If your language uses an external scanner, add it here.
],
"cflags_c": [
"-std=c99",
Expand Down
1 change: 1 addition & 0 deletions grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,4 +273,5 @@ module.exports = grammar({

simple_word: _ => token(/[^!$\s\\\[\]{}();"]+/),
}

});
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Treesitter parser for TCL",
"main": "bindings/node",
"keywords": [
"tree-sitter",
"parser",
"lexer",
"tcl"
Expand All @@ -13,9 +14,10 @@
"url": "https://github.com/tree-sitter-grammars/tree-sitter-tcl.git"
},
"scripts": {
"generate": "tree-sitter generate",
"parse": "tree-sitter parse",
"lint": "eslint grammar.js",
"test": "tree-sitter test",
"test-windows": "tree-sitter test"
"test": "tree-sitter test"
},
"author": "Lewis Russell <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 0e49597

Please sign in to comment.