@kreuzberg/tree-sitter-language-pack 1.10.2 → 1.10.6
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 +1 -1
- package/index.js +76 -115
- package/package.json +9 -9
- package/ts-pack-core-node.darwin-arm64.node +0 -0
- package/ts-pack-core-node.darwin-x64.node +0 -0
- package/ts-pack-core-node.linux-arm64-gnu.node +0 -0
- package/ts-pack-core-node.linux-x64-gnu.node +0 -0
- package/ts-pack-core-node.win32-arm64-msvc.node +0 -0
- package/ts-pack-core-node.win32-x64-msvc.node +0 -0
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
// alef:hash:
|
|
2
|
+
// alef:hash:4f5d66911897a4ed6b3f5d6561f57a6ac2320a8864265ea61ce567bcae0d72ba
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
61
|
+
for (const [plat, a, abi, localPath, optionalDep] of targets) {
|
|
62
|
+
if (platform !== plat || arch !== a) {
|
|
63
|
+
continue;
|
|
64
|
+
}
|
|
106
65
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
66
|
+
if (plat === "linux" && abi) {
|
|
67
|
+
const isCurMusl = isMusl();
|
|
68
|
+
if ((abi === "musl") !== isCurMusl) {
|
|
69
|
+
continue;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
113
72
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
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
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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
|
-
|
|
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
|
+
"version": "1.10.6",
|
|
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.
|
|
37
|
-
"@kreuzberg/tree-sitter-language-pack-darwin-x64": "1.10.
|
|
38
|
-
"@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu": "1.10.
|
|
39
|
-
"@kreuzberg/tree-sitter-language-pack-linux-arm64-musl": "1.10.
|
|
40
|
-
"@kreuzberg/tree-sitter-language-pack-linux-x64-gnu": "1.10.
|
|
41
|
-
"@kreuzberg/tree-sitter-language-pack-linux-x64-musl": "1.10.
|
|
42
|
-
"@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc": "1.10.
|
|
43
|
-
"@kreuzberg/tree-sitter-language-pack-win32-x64-msvc": "1.10.
|
|
36
|
+
"@kreuzberg/tree-sitter-language-pack-darwin-arm64": "1.10.6",
|
|
37
|
+
"@kreuzberg/tree-sitter-language-pack-darwin-x64": "1.10.6",
|
|
38
|
+
"@kreuzberg/tree-sitter-language-pack-linux-arm64-gnu": "1.10.6",
|
|
39
|
+
"@kreuzberg/tree-sitter-language-pack-linux-arm64-musl": "1.10.6",
|
|
40
|
+
"@kreuzberg/tree-sitter-language-pack-linux-x64-gnu": "1.10.6",
|
|
41
|
+
"@kreuzberg/tree-sitter-language-pack-linux-x64-musl": "1.10.6",
|
|
42
|
+
"@kreuzberg/tree-sitter-language-pack-win32-arm64-msvc": "1.10.6",
|
|
43
|
+
"@kreuzberg/tree-sitter-language-pack-win32-x64-msvc": "1.10.6"
|
|
44
44
|
},
|
|
45
45
|
"napi": {
|
|
46
46
|
"binaryName": "ts-pack-core-node",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|