@kumos/tree-sitter-parsers 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/postinstall.js +1 -1
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.7",
29
+ "@kumos/tree-sitter-parsers-darwin-x64": "0.1.7",
30
+ "@kumos/tree-sitter-parsers-linux-arm64": "0.1.7",
31
+ "@kumos/tree-sitter-parsers-linux-arm64-musl": "0.1.7",
32
+ "@kumos/tree-sitter-parsers-linux-x64": "0.1.7",
33
+ "@kumos/tree-sitter-parsers-linux-x64-musl": "0.1.7",
34
+ "@kumos/tree-sitter-parsers-win32-arm64": "0.1.7",
35
+ "@kumos/tree-sitter-parsers-win32-x64": "0.1.7"
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.7"
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
  }