tree-sitter-beancount 2.4.0 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/binding.gyp CHANGED
@@ -11,7 +11,7 @@
11
11
  "sources": [
12
12
  "bindings/node/binding.cc",
13
13
  "src/parser.c",
14
- # NOTE: if your language has an external scanner, add it here.
14
+ "src/scanner.c",
15
15
  ],
16
16
  "conditions": [
17
17
  ["OS!='win'", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tree-sitter-beancount",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "a tree-sitter parser for the beancount syntax",
5
5
  "main": "bindings/node",
6
6
  "types": "bindings/node",
package/src/parser.c CHANGED
@@ -16443,8 +16443,8 @@ TS_PUBLIC const TSLanguage *tree_sitter_beancount(void) {
16443
16443
  .max_reserved_word_set_size = 0,
16444
16444
  .metadata = {
16445
16445
  .major_version = 2,
16446
- .minor_version = 4,
16447
- .patch_version = 0,
16446
+ .minor_version = 3,
16447
+ .patch_version = 3,
16448
16448
  },
16449
16449
  };
16450
16450
  return &language;