@kreuzberg/tree-sitter-language-pack 1.10.3 → 1.10.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.
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  // This file is auto-generated by alef — DO NOT EDIT.
2
- // alef:hash:bb4f7b93b97d64c44a784ad899298b669e39b6206b05af6fee6923b09f137f69
2
+ // alef:hash:fac0bd795b516381257c10b27a86279c82639b79d31e15965a37bcc80fa7ed48
3
3
  // To regenerate: alef generate
4
4
  // To verify freshness: alef verify --exit-code
5
5
  /* eslint-disable */
package/index.js CHANGED
@@ -3,139 +3,100 @@
3
3
  const { platform, arch } = process;
4
4
  const isWindows = platform === "win32";
5
5
  const isMusl = () => {
6
- // Prefer the report-header `glibcVersion` string when present — fastest and
7
- // unambiguous on Node builds that populate it. On Node 22+, certain CI
8
- // environments leave `glibcVersion` undefined even on glibc systems, so the
9
- // `=== undefined` branch from older napi-rs templates produces a false
10
- // "is musl" positive. Fall through to the filesystem heuristic instead: on
11
- // glibc systems `/lib64/ld-musl-x86_64.so.1` does not exist; on musl systems
12
- // it always does. statSync errors → not musl.
13
- if (typeof process.report === "object" && typeof process.report.getReport === "function") {
14
- const report = process.report.getReport();
15
- if (report && report.header && typeof report.header.glibcVersion === "string") {
16
- return false;
17
- }
18
- }
19
- try {
20
- require("fs").statSync("/lib64/ld-musl-x86_64.so.1");
21
- return true;
22
- } catch {
23
- return false;
24
- }
6
+ // Prefer the report-header `glibcVersion` string when present — fastest and
7
+ // unambiguous on Node builds that populate it. On Node 22+, certain CI
8
+ // environments leave `glibcVersion` undefined even on glibc systems, so the
9
+ // `=== undefined` branch from older napi-rs templates produces a false
10
+ // "is musl" positive. Fall through to the filesystem heuristic instead: on
11
+ // glibc systems `/lib64/ld-musl-x86_64.so.1` does not exist; on musl systems
12
+ // it always does. statSync errors → not musl.
13
+ if (
14
+ typeof process.report === "object" &&
15
+ typeof process.report.getReport === "function"
16
+ ) {
17
+ const report = process.report.getReport();
18
+ if (
19
+ report &&
20
+ report.header &&
21
+ typeof report.header.glibcVersion === "string"
22
+ ) {
23
+ return false;
24
+ }
25
+ }
26
+ try {
27
+ require("fs").statSync("/lib64/ld-musl-x86_64.so.1");
28
+ return true;
29
+ } catch {
30
+ return false;
31
+ }
25
32
  };
26
33
 
27
34
  let nativeBinding = null;
28
35
  const loadErrors = [];
29
36
 
30
37
  function requireOptionalDependency(name) {
31
- try {
32
- return require(name);
33
- } catch (e) {
34
- loadErrors.push(`Optional dependency ${name}: ${e.message}`);
35
- return null;
36
- }
38
+ try {
39
+ return require(name);
40
+ } catch (e) {
41
+ loadErrors.push(`Optional dependency ${name}: ${e.message}`);
42
+ return null;
43
+ }
37
44
  }
38
45
 
39
46
  const tryLoadBinding = () => {
40
- // Local `.node` files are named after `napi.binaryName` (binary file name on disk).
41
- // Optional-dep packages are named after `napi.packageName` (npm subpackage names),
42
- // which inherits any scope prefix from the parent package.
43
- const targets = [
44
- [
45
- "linux",
46
- "x64",
47
- "gnu",
48
- "./ts-pack-core-node.linux-x64-gnu.node",
49
- "@kreuzberg/tree-sitter-language-pack-linux-x64-gnu",
50
- ],
51
- [
52
- "linux",
53
- "arm64",
54
- "gnu",
55
- "./ts-pack-core-node.linux-arm64-gnu.node",
56
- "@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu",
57
- ],
58
- [
59
- "linux",
60
- "x64",
61
- "musl",
62
- "./ts-pack-core-node.linux-x64-musl.node",
63
- "@kreuzberg/tree-sitter-language-pack-linux-x64-musl",
64
- ],
65
- [
66
- "linux",
67
- "arm64",
68
- "musl",
69
- "./ts-pack-core-node.linux-arm64-musl.node",
70
- "@kreuzberg/tree-sitter-language-pack-linux-arm64-musl",
71
- ],
72
- [
73
- "darwin",
74
- "x64",
75
- null,
76
- "./ts-pack-core-node.darwin-x64.node",
77
- "@kreuzberg/tree-sitter-language-pack-darwin-x64",
78
- ],
79
- [
80
- "darwin",
81
- "arm64",
82
- null,
83
- "./ts-pack-core-node.darwin-arm64.node",
84
- "@kreuzberg/tree-sitter-language-pack-darwin-arm64",
85
- ],
86
- [
87
- "win32",
88
- "x64",
89
- null,
90
- "./ts-pack-core-node.win32-x64-msvc.node",
91
- "@kreuzberg/tree-sitter-language-pack-win32-x64-msvc",
92
- ],
93
- [
94
- "win32",
95
- "arm64",
96
- null,
97
- "./ts-pack-core-node.win32-arm64-msvc.node",
98
- "@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc",
99
- ],
100
- ];
47
+ // Local `.node` files are named after `napi.binaryName` (binary file name on disk).
48
+ // Optional-dep packages are named after `napi.packageName` (npm subpackage names),
49
+ // which inherits any scope prefix from the parent package.
50
+ const targets = [
51
+ ["linux", "x64", "gnu", "./ts-pack-core-node.linux-x64-gnu.node", "@kreuzberg/tree-sitter-language-pack-linux-x64-gnu"],
52
+ ["linux", "arm64", "gnu", "./ts-pack-core-node.linux-arm64-gnu.node", "@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu"],
53
+ ["linux", "x64", "musl", "./ts-pack-core-node.linux-x64-musl.node", "@kreuzberg/tree-sitter-language-pack-linux-x64-musl"],
54
+ ["linux", "arm64", "musl", "./ts-pack-core-node.linux-arm64-musl.node", "@kreuzberg/tree-sitter-language-pack-linux-arm64-musl"],
55
+ ["darwin", "x64", null, "./ts-pack-core-node.darwin-x64.node", "@kreuzberg/tree-sitter-language-pack-darwin-x64"],
56
+ ["darwin", "arm64", null, "./ts-pack-core-node.darwin-arm64.node", "@kreuzberg/tree-sitter-language-pack-darwin-arm64"],
57
+ ["win32", "x64", null, "./ts-pack-core-node.win32-x64-msvc.node", "@kreuzberg/tree-sitter-language-pack-win32-x64-msvc"],
58
+ ["win32", "arm64", null, "./ts-pack-core-node.win32-arm64-msvc.node", "@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc"],
59
+ ];
101
60
 
102
- for (const [plat, a, abi, localPath, optionalDep] of targets) {
103
- if (platform !== plat || arch !== a) {
104
- continue;
105
- }
61
+ for (const [plat, a, abi, localPath, optionalDep] of targets) {
62
+ if (platform !== plat || arch !== a) {
63
+ continue;
64
+ }
106
65
 
107
- if (plat === "linux" && abi) {
108
- const isCurMusl = isMusl();
109
- if ((abi === "musl") !== isCurMusl) {
110
- continue;
111
- }
112
- }
66
+ if (plat === "linux" && abi) {
67
+ const isCurMusl = isMusl();
68
+ if ((abi === "musl") !== isCurMusl) {
69
+ continue;
70
+ }
71
+ }
113
72
 
114
- try {
115
- nativeBinding = require(localPath);
116
- if (nativeBinding) {
117
- return;
118
- }
119
- } catch (e) {
120
- loadErrors.push(e.message);
121
- }
73
+ try {
74
+ nativeBinding = require(localPath);
75
+ if (nativeBinding) {
76
+ return;
77
+ }
78
+ } catch (e) {
79
+ loadErrors.push(e.message);
80
+ }
122
81
 
123
- try {
124
- const optBinding = requireOptionalDependency(optionalDep);
125
- if (optBinding) {
126
- nativeBinding = optBinding;
127
- return;
128
- }
129
- } catch (e) {
130
- loadErrors.push(e.message);
131
- }
132
- }
82
+ try {
83
+ const optBinding = requireOptionalDependency(optionalDep);
84
+ if (optBinding) {
85
+ nativeBinding = optBinding;
86
+ return;
87
+ }
88
+ } catch (e) {
89
+ loadErrors.push(e.message);
90
+ }
91
+ }
133
92
  };
134
93
 
135
94
  tryLoadBinding();
136
95
 
137
96
  if (!nativeBinding) {
138
- throw new Error(`Failed to load native binding for ${platform}-${arch}. Errors: ${loadErrors.join(", ")}`);
97
+ throw new Error(
98
+ `Failed to load native binding for ${platform}-${arch}. Errors: ${loadErrors.join(", ")}`
99
+ );
139
100
  }
140
101
 
141
102
  module.exports = nativeBinding;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kreuzberg/tree-sitter-language-pack",
3
- "version": "1.10.3",
3
+ "version": "1.10.7",
4
4
  "description": "Pre-compiled tree-sitter grammars for 306 programming languages",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -33,14 +33,14 @@
33
33
  "@napi-rs/cli": "^3.6.2"
34
34
  },
35
35
  "optionalDependencies": {
36
- "@kreuzberg/tree-sitter-language-pack-darwin-arm64": "1.10.3",
37
- "@kreuzberg/tree-sitter-language-pack-darwin-x64": "1.10.3",
38
- "@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu": "1.10.3",
39
- "@kreuzberg/tree-sitter-language-pack-linux-arm64-musl": "1.10.3",
40
- "@kreuzberg/tree-sitter-language-pack-linux-x64-gnu": "1.10.3",
41
- "@kreuzberg/tree-sitter-language-pack-linux-x64-musl": "1.10.3",
42
- "@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc": "1.10.3",
43
- "@kreuzberg/tree-sitter-language-pack-win32-x64-msvc": "1.10.3"
36
+ "@kreuzberg/tree-sitter-language-pack-darwin-arm64": "1.10.7",
37
+ "@kreuzberg/tree-sitter-language-pack-darwin-x64": "1.10.7",
38
+ "@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu": "1.10.7",
39
+ "@kreuzberg/tree-sitter-language-pack-linux-arm64-musl": "1.10.7",
40
+ "@kreuzberg/tree-sitter-language-pack-linux-x64-gnu": "1.10.7",
41
+ "@kreuzberg/tree-sitter-language-pack-linux-x64-musl": "1.10.7",
42
+ "@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc": "1.10.7",
43
+ "@kreuzberg/tree-sitter-language-pack-win32-x64-msvc": "1.10.7"
44
44
  },
45
45
  "napi": {
46
46
  "binaryName": "ts-pack-core-node",
Binary file
Binary file