@kumos/tree-sitter-parsers 0.1.6 → 0.1.8

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/README.md CHANGED
@@ -136,3 +136,4 @@ The main package uses npm's `optionalDependencies` to install only the relevant
136
136
  ## License
137
137
 
138
138
  MIT
139
+ we got the language list from https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "description": "Pre-compiled Tree-sitter parsers for 163 programming languages",
7
7
  "devDependencies": {
8
- "tree-sitter-cli": "^0.25.6"
8
+ "tree-sitter-cli": "^0.25.10"
9
9
  },
10
10
  "engines": {
11
11
  "node": ">=20.0.0"
@@ -25,14 +25,14 @@
25
25
  "main": "index.js",
26
26
  "name": "@kumos/tree-sitter-parsers",
27
27
  "optionalDependencies": {
28
- "@kumos/tree-sitter-parsers-darwin-arm64": "0.1.5",
29
- "@kumos/tree-sitter-parsers-darwin-x64": "0.1.5",
30
- "@kumos/tree-sitter-parsers-linux-arm64": "0.1.5",
31
- "@kumos/tree-sitter-parsers-linux-arm64-musl": "0.1.5",
32
- "@kumos/tree-sitter-parsers-linux-x64": "0.1.5",
33
- "@kumos/tree-sitter-parsers-linux-x64-musl": "0.1.5",
34
- "@kumos/tree-sitter-parsers-win32-arm64": "0.1.5",
35
- "@kumos/tree-sitter-parsers-win32-x64": "0.1.5"
28
+ "@kumos/tree-sitter-parsers-darwin-arm64": "0.1.8",
29
+ "@kumos/tree-sitter-parsers-darwin-x64": "0.1.8",
30
+ "@kumos/tree-sitter-parsers-linux-arm64": "0.1.8",
31
+ "@kumos/tree-sitter-parsers-linux-arm64-musl": "0.1.8",
32
+ "@kumos/tree-sitter-parsers-linux-x64": "0.1.8",
33
+ "@kumos/tree-sitter-parsers-linux-x64-musl": "0.1.8",
34
+ "@kumos/tree-sitter-parsers-win32-arm64": "0.1.8",
35
+ "@kumos/tree-sitter-parsers-win32-x64": "0.1.8"
36
36
  },
37
37
  "repository": {
38
38
  "type": "git",
@@ -53,5 +53,5 @@
53
53
  "test-distribution:x64": "node test-distribution.js --arch x64",
54
54
  "validate": "node validate.js"
55
55
  },
56
- "version": "0.1.6"
56
+ "version": "0.1.8"
57
57
  }
package/postinstall.js CHANGED
@@ -143,7 +143,7 @@ async function downloadBinaries() {
143
143
 
144
144
  async function main() {
145
145
  // Skip in CI environments or when explicitly disabled
146
- if (process.env.CI || process.env.BREEZE_SKIP_DOWNLOAD) {
146
+ if (process.env.BREEZE_SKIP_DOWNLOAD) {
147
147
  console.log('Skipping postinstall download.');
148
148
  return;
149
149
  }