@visulima/tui 1.0.1 → 1.0.3
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/CHANGELOG.md +4 -0
- package/index.js +543 -593
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## @visulima/tui [1.0.3](https://github.com/visulima/visulima/compare/%40visulima%2Ftui%401.0.2...%40visulima%2Ftui%401.0.3) (2026-07-17)
|
|
2
|
+
|
|
3
|
+
## @visulima/tui [1.0.2](https://github.com/visulima/visulima/compare/%40visulima%2Ftui%401.0.1...%40visulima%2Ftui%401.0.2) (2026-07-15)
|
|
4
|
+
|
|
1
5
|
## @visulima/tui [1.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Ftui%401.0.0...%40visulima%2Ftui%401.0.1) (2026-07-15)
|
|
2
6
|
|
|
3
7
|
## @visulima/tui 1.0.0 (2026-07-03)
|
package/index.js
CHANGED
|
@@ -3,583 +3,531 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
|
-
import { createRequire } from '
|
|
7
|
-
const require = createRequire(import.meta.url)
|
|
8
|
-
const __dirname = new URL(
|
|
6
|
+
import { createRequire } from 'module'
|
|
7
|
+
const require = createRequire(import.meta.url)
|
|
8
|
+
const __dirname = new URL('.', import.meta.url).pathname
|
|
9
9
|
|
|
10
|
-
const { readFileSync } = require(
|
|
11
|
-
let nativeBinding = null
|
|
12
|
-
const loadErrors = []
|
|
10
|
+
const { readFileSync } = require('fs')
|
|
11
|
+
let nativeBinding = null
|
|
12
|
+
const loadErrors = []
|
|
13
13
|
|
|
14
14
|
const isMusl = () => {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
if (musl === null) {
|
|
22
|
-
musl = isMuslFromChildProcess();
|
|
23
|
-
}
|
|
15
|
+
let musl = false
|
|
16
|
+
if (process.platform === 'linux') {
|
|
17
|
+
musl = isMuslFromFilesystem()
|
|
18
|
+
if (musl === null) {
|
|
19
|
+
musl = isMuslFromReport()
|
|
24
20
|
}
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
if (musl === null) {
|
|
22
|
+
musl = isMuslFromChildProcess()
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
return musl
|
|
26
|
+
}
|
|
27
27
|
|
|
28
|
-
const isFileMusl = (f) => f.includes(
|
|
28
|
+
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
|
|
29
29
|
|
|
30
30
|
const isMuslFromFilesystem = () => {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
31
|
+
try {
|
|
32
|
+
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
|
|
33
|
+
} catch {
|
|
34
|
+
return null
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
37
|
|
|
38
38
|
const isMuslFromReport = () => {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
let report = null
|
|
40
|
+
if (process.report && typeof process.report.getReport === 'function') {
|
|
41
|
+
process.report.excludeNetwork = true
|
|
42
|
+
report = process.report.getReport()
|
|
43
|
+
}
|
|
44
|
+
if (!report) {
|
|
45
|
+
return null
|
|
46
|
+
}
|
|
47
|
+
if (report.header && report.header.glibcVersionRuntime) {
|
|
48
|
+
return false
|
|
49
|
+
}
|
|
50
|
+
if (Array.isArray(report.sharedObjects)) {
|
|
51
|
+
if (report.sharedObjects.some(isFileMusl)) {
|
|
52
|
+
return true
|
|
43
53
|
}
|
|
44
|
-
|
|
45
|
-
|
|
54
|
+
}
|
|
55
|
+
return false
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const isMuslFromChildProcess = () => {
|
|
59
|
+
try {
|
|
60
|
+
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
|
|
61
|
+
} catch (e) {
|
|
62
|
+
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
|
63
|
+
return false
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function requireNative() {
|
|
68
|
+
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
|
|
69
|
+
try {
|
|
70
|
+
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
|
|
71
|
+
} catch (err) {
|
|
72
|
+
loadErrors.push(err)
|
|
46
73
|
}
|
|
47
|
-
|
|
48
|
-
|
|
74
|
+
} else if (process.platform === 'android') {
|
|
75
|
+
if (process.arch === 'arm64') {
|
|
76
|
+
try {
|
|
77
|
+
return require('./tui-native.android-arm64.node')
|
|
78
|
+
} catch (e) {
|
|
79
|
+
loadErrors.push(e)
|
|
80
|
+
}
|
|
81
|
+
try {
|
|
82
|
+
const binding = require('@visulima/tui-binding-android-arm64')
|
|
83
|
+
const bindingPackageVersion = require('@visulima/tui-binding-android-arm64/package.json').version
|
|
84
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
|
+
}
|
|
87
|
+
return binding
|
|
88
|
+
} catch (e) {
|
|
89
|
+
loadErrors.push(e)
|
|
90
|
+
}
|
|
91
|
+
} else if (process.arch === 'arm') {
|
|
92
|
+
try {
|
|
93
|
+
return require('./tui-native.android-arm-eabi.node')
|
|
94
|
+
} catch (e) {
|
|
95
|
+
loadErrors.push(e)
|
|
96
|
+
}
|
|
97
|
+
try {
|
|
98
|
+
const binding = require('@visulima/tui-binding-android-arm-eabi')
|
|
99
|
+
const bindingPackageVersion = require('@visulima/tui-binding-android-arm-eabi/package.json').version
|
|
100
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
|
+
}
|
|
103
|
+
return binding
|
|
104
|
+
} catch (e) {
|
|
105
|
+
loadErrors.push(e)
|
|
106
|
+
}
|
|
107
|
+
} else {
|
|
108
|
+
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
|
|
49
109
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
110
|
+
} else if (process.platform === 'win32') {
|
|
111
|
+
if (process.arch === 'x64') {
|
|
112
|
+
if ((process.config && process.config.variables && process.config.variables.shlib_suffix === 'dll.a') || (process.config && process.config.variables && process.config.variables.node_target_type === 'shared_library')) {
|
|
113
|
+
try {
|
|
114
|
+
return require('./tui-native.win32-x64-gnu.node')
|
|
115
|
+
} catch (e) {
|
|
116
|
+
loadErrors.push(e)
|
|
117
|
+
}
|
|
118
|
+
try {
|
|
119
|
+
const binding = require('@visulima/tui-binding-win32-x64-gnu')
|
|
120
|
+
const bindingPackageVersion = require('@visulima/tui-binding-win32-x64-gnu/package.json').version
|
|
121
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
|
+
}
|
|
124
|
+
return binding
|
|
125
|
+
} catch (e) {
|
|
126
|
+
loadErrors.push(e)
|
|
127
|
+
}
|
|
128
|
+
} else {
|
|
129
|
+
try {
|
|
130
|
+
return require('./tui-native.win32-x64-msvc.node')
|
|
131
|
+
} catch (e) {
|
|
132
|
+
loadErrors.push(e)
|
|
133
|
+
}
|
|
134
|
+
try {
|
|
135
|
+
const binding = require('@visulima/tui-binding-win32-x64-msvc')
|
|
136
|
+
const bindingPackageVersion = require('@visulima/tui-binding-win32-x64-msvc/package.json').version
|
|
137
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
53
139
|
}
|
|
140
|
+
return binding
|
|
141
|
+
} catch (e) {
|
|
142
|
+
loadErrors.push(e)
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
} else if (process.arch === 'ia32') {
|
|
146
|
+
try {
|
|
147
|
+
return require('./tui-native.win32-ia32-msvc.node')
|
|
148
|
+
} catch (e) {
|
|
149
|
+
loadErrors.push(e)
|
|
150
|
+
}
|
|
151
|
+
try {
|
|
152
|
+
const binding = require('@visulima/tui-binding-win32-ia32-msvc')
|
|
153
|
+
const bindingPackageVersion = require('@visulima/tui-binding-win32-ia32-msvc/package.json').version
|
|
154
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
|
+
}
|
|
157
|
+
return binding
|
|
158
|
+
} catch (e) {
|
|
159
|
+
loadErrors.push(e)
|
|
160
|
+
}
|
|
161
|
+
} else if (process.arch === 'arm64') {
|
|
162
|
+
try {
|
|
163
|
+
return require('./tui-native.win32-arm64-msvc.node')
|
|
164
|
+
} catch (e) {
|
|
165
|
+
loadErrors.push(e)
|
|
166
|
+
}
|
|
167
|
+
try {
|
|
168
|
+
const binding = require('@visulima/tui-binding-win32-arm64-msvc')
|
|
169
|
+
const bindingPackageVersion = require('@visulima/tui-binding-win32-arm64-msvc/package.json').version
|
|
170
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
|
+
}
|
|
173
|
+
return binding
|
|
174
|
+
} catch (e) {
|
|
175
|
+
loadErrors.push(e)
|
|
176
|
+
}
|
|
177
|
+
} else {
|
|
178
|
+
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
|
|
54
179
|
}
|
|
55
|
-
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
const isMuslFromChildProcess = () => {
|
|
180
|
+
} else if (process.platform === 'darwin') {
|
|
59
181
|
try {
|
|
60
|
-
|
|
182
|
+
return require('./tui-native.darwin-universal.node')
|
|
61
183
|
} catch (e) {
|
|
62
|
-
|
|
63
|
-
return false;
|
|
184
|
+
loadErrors.push(e)
|
|
64
185
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
186
|
+
try {
|
|
187
|
+
const binding = require('@visulima/tui-binding-darwin-universal')
|
|
188
|
+
const bindingPackageVersion = require('@visulima/tui-binding-darwin-universal/package.json').version
|
|
189
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
|
+
}
|
|
192
|
+
return binding
|
|
193
|
+
} catch (e) {
|
|
194
|
+
loadErrors.push(e)
|
|
195
|
+
}
|
|
196
|
+
if (process.arch === 'x64') {
|
|
197
|
+
try {
|
|
198
|
+
return require('./tui-native.darwin-x64.node')
|
|
199
|
+
} catch (e) {
|
|
200
|
+
loadErrors.push(e)
|
|
201
|
+
}
|
|
202
|
+
try {
|
|
203
|
+
const binding = require('@visulima/tui-binding-darwin-x64')
|
|
204
|
+
const bindingPackageVersion = require('@visulima/tui-binding-darwin-x64/package.json').version
|
|
205
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
|
+
}
|
|
208
|
+
return binding
|
|
209
|
+
} catch (e) {
|
|
210
|
+
loadErrors.push(e)
|
|
211
|
+
}
|
|
212
|
+
} else if (process.arch === 'arm64') {
|
|
213
|
+
try {
|
|
214
|
+
return require('./tui-native.darwin-arm64.node')
|
|
215
|
+
} catch (e) {
|
|
216
|
+
loadErrors.push(e)
|
|
217
|
+
}
|
|
218
|
+
try {
|
|
219
|
+
const binding = require('@visulima/tui-binding-darwin-arm64')
|
|
220
|
+
const bindingPackageVersion = require('@visulima/tui-binding-darwin-arm64/package.json').version
|
|
221
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
|
+
}
|
|
224
|
+
return binding
|
|
225
|
+
} catch (e) {
|
|
226
|
+
loadErrors.push(e)
|
|
227
|
+
}
|
|
228
|
+
} else {
|
|
229
|
+
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
|
|
230
|
+
}
|
|
231
|
+
} else if (process.platform === 'freebsd') {
|
|
232
|
+
if (process.arch === 'x64') {
|
|
233
|
+
try {
|
|
234
|
+
return require('./tui-native.freebsd-x64.node')
|
|
235
|
+
} catch (e) {
|
|
236
|
+
loadErrors.push(e)
|
|
237
|
+
}
|
|
238
|
+
try {
|
|
239
|
+
const binding = require('@visulima/tui-binding-freebsd-x64')
|
|
240
|
+
const bindingPackageVersion = require('@visulima/tui-binding-freebsd-x64/package.json').version
|
|
241
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
|
+
}
|
|
244
|
+
return binding
|
|
245
|
+
} catch (e) {
|
|
246
|
+
loadErrors.push(e)
|
|
247
|
+
}
|
|
248
|
+
} else if (process.arch === 'arm64') {
|
|
249
|
+
try {
|
|
250
|
+
return require('./tui-native.freebsd-arm64.node')
|
|
251
|
+
} catch (e) {
|
|
252
|
+
loadErrors.push(e)
|
|
253
|
+
}
|
|
254
|
+
try {
|
|
255
|
+
const binding = require('@visulima/tui-binding-freebsd-arm64')
|
|
256
|
+
const bindingPackageVersion = require('@visulima/tui-binding-freebsd-arm64/package.json').version
|
|
257
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
|
+
}
|
|
260
|
+
return binding
|
|
261
|
+
} catch (e) {
|
|
262
|
+
loadErrors.push(e)
|
|
263
|
+
}
|
|
264
|
+
} else {
|
|
265
|
+
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
|
|
266
|
+
}
|
|
267
|
+
} else if (process.platform === 'linux') {
|
|
268
|
+
if (process.arch === 'x64') {
|
|
269
|
+
if (isMusl()) {
|
|
69
270
|
try {
|
|
70
|
-
|
|
71
|
-
} catch (
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
} else if (process.platform === "android") {
|
|
75
|
-
if (process.arch === "arm64") {
|
|
76
|
-
try {
|
|
77
|
-
return require("./tui-native.android-arm64.node");
|
|
78
|
-
} catch (e) {
|
|
79
|
-
loadErrors.push(e);
|
|
80
|
-
}
|
|
81
|
-
try {
|
|
82
|
-
const binding = require("@visulima/tui-binding-android-arm64");
|
|
83
|
-
const bindingPackageVersion = require("@visulima/tui-binding-android-arm64/package.json").version;
|
|
84
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
85
|
-
throw new Error(
|
|
86
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
87
|
-
);
|
|
88
|
-
}
|
|
89
|
-
return binding;
|
|
90
|
-
} catch (e) {
|
|
91
|
-
loadErrors.push(e);
|
|
92
|
-
}
|
|
93
|
-
} else if (process.arch === "arm") {
|
|
94
|
-
try {
|
|
95
|
-
return require("./tui-native.android-arm-eabi.node");
|
|
96
|
-
} catch (e) {
|
|
97
|
-
loadErrors.push(e);
|
|
98
|
-
}
|
|
99
|
-
try {
|
|
100
|
-
const binding = require("@visulima/tui-binding-android-arm-eabi");
|
|
101
|
-
const bindingPackageVersion = require("@visulima/tui-binding-android-arm-eabi/package.json").version;
|
|
102
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
103
|
-
throw new Error(
|
|
104
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
105
|
-
);
|
|
106
|
-
}
|
|
107
|
-
return binding;
|
|
108
|
-
} catch (e) {
|
|
109
|
-
loadErrors.push(e);
|
|
110
|
-
}
|
|
111
|
-
} else {
|
|
112
|
-
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`));
|
|
113
|
-
}
|
|
114
|
-
} else if (process.platform === "win32") {
|
|
115
|
-
if (process.arch === "x64") {
|
|
116
|
-
if (process.config?.variables?.shlib_suffix === "dll.a" || process.config?.variables?.node_target_type === "shared_library") {
|
|
117
|
-
try {
|
|
118
|
-
return require("./tui-native.win32-x64-gnu.node");
|
|
119
|
-
} catch (e) {
|
|
120
|
-
loadErrors.push(e);
|
|
121
|
-
}
|
|
122
|
-
try {
|
|
123
|
-
const binding = require("@visulima/tui-binding-win32-x64-gnu");
|
|
124
|
-
const bindingPackageVersion = require("@visulima/tui-binding-win32-x64-gnu/package.json").version;
|
|
125
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
126
|
-
throw new Error(
|
|
127
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
128
|
-
);
|
|
129
|
-
}
|
|
130
|
-
return binding;
|
|
131
|
-
} catch (e) {
|
|
132
|
-
loadErrors.push(e);
|
|
133
|
-
}
|
|
134
|
-
} else {
|
|
135
|
-
try {
|
|
136
|
-
return require("./tui-native.win32-x64-msvc.node");
|
|
137
|
-
} catch (e) {
|
|
138
|
-
loadErrors.push(e);
|
|
139
|
-
}
|
|
140
|
-
try {
|
|
141
|
-
const binding = require("@visulima/tui-binding-win32-x64-msvc");
|
|
142
|
-
const bindingPackageVersion = require("@visulima/tui-binding-win32-x64-msvc/package.json").version;
|
|
143
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
144
|
-
throw new Error(
|
|
145
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
146
|
-
);
|
|
147
|
-
}
|
|
148
|
-
return binding;
|
|
149
|
-
} catch (e) {
|
|
150
|
-
loadErrors.push(e);
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
} else if (process.arch === "ia32") {
|
|
154
|
-
try {
|
|
155
|
-
return require("./tui-native.win32-ia32-msvc.node");
|
|
156
|
-
} catch (e) {
|
|
157
|
-
loadErrors.push(e);
|
|
158
|
-
}
|
|
159
|
-
try {
|
|
160
|
-
const binding = require("@visulima/tui-binding-win32-ia32-msvc");
|
|
161
|
-
const bindingPackageVersion = require("@visulima/tui-binding-win32-ia32-msvc/package.json").version;
|
|
162
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
163
|
-
throw new Error(
|
|
164
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
165
|
-
);
|
|
166
|
-
}
|
|
167
|
-
return binding;
|
|
168
|
-
} catch (e) {
|
|
169
|
-
loadErrors.push(e);
|
|
170
|
-
}
|
|
171
|
-
} else if (process.arch === "arm64") {
|
|
172
|
-
try {
|
|
173
|
-
return require("./tui-native.win32-arm64-msvc.node");
|
|
174
|
-
} catch (e) {
|
|
175
|
-
loadErrors.push(e);
|
|
176
|
-
}
|
|
177
|
-
try {
|
|
178
|
-
const binding = require("@visulima/tui-binding-win32-arm64-msvc");
|
|
179
|
-
const bindingPackageVersion = require("@visulima/tui-binding-win32-arm64-msvc/package.json").version;
|
|
180
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
181
|
-
throw new Error(
|
|
182
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
183
|
-
);
|
|
184
|
-
}
|
|
185
|
-
return binding;
|
|
186
|
-
} catch (e) {
|
|
187
|
-
loadErrors.push(e);
|
|
188
|
-
}
|
|
189
|
-
} else {
|
|
190
|
-
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`));
|
|
271
|
+
return require('./tui-native.linux-x64-musl.node')
|
|
272
|
+
} catch (e) {
|
|
273
|
+
loadErrors.push(e)
|
|
191
274
|
}
|
|
192
|
-
} else if (process.platform === "darwin") {
|
|
193
275
|
try {
|
|
194
|
-
|
|
276
|
+
const binding = require('@visulima/tui-binding-linux-x64-musl')
|
|
277
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-x64-musl/package.json').version
|
|
278
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
|
+
}
|
|
281
|
+
return binding
|
|
195
282
|
} catch (e) {
|
|
196
|
-
|
|
283
|
+
loadErrors.push(e)
|
|
197
284
|
}
|
|
285
|
+
} else {
|
|
198
286
|
try {
|
|
199
|
-
|
|
200
|
-
const bindingPackageVersion = require("@visulima/tui-binding-darwin-universal/package.json").version;
|
|
201
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
202
|
-
throw new Error(
|
|
203
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
204
|
-
);
|
|
205
|
-
}
|
|
206
|
-
return binding;
|
|
287
|
+
return require('./tui-native.linux-x64-gnu.node')
|
|
207
288
|
} catch (e) {
|
|
208
|
-
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
220
|
-
throw new Error(
|
|
221
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
222
|
-
);
|
|
223
|
-
}
|
|
224
|
-
return binding;
|
|
225
|
-
} catch (e) {
|
|
226
|
-
loadErrors.push(e);
|
|
227
|
-
}
|
|
228
|
-
} else if (process.arch === "arm64") {
|
|
229
|
-
try {
|
|
230
|
-
return require("./tui-native.darwin-arm64.node");
|
|
231
|
-
} catch (e) {
|
|
232
|
-
loadErrors.push(e);
|
|
233
|
-
}
|
|
234
|
-
try {
|
|
235
|
-
const binding = require("@visulima/tui-binding-darwin-arm64");
|
|
236
|
-
const bindingPackageVersion = require("@visulima/tui-binding-darwin-arm64/package.json").version;
|
|
237
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
238
|
-
throw new Error(
|
|
239
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
240
|
-
);
|
|
241
|
-
}
|
|
242
|
-
return binding;
|
|
243
|
-
} catch (e) {
|
|
244
|
-
loadErrors.push(e);
|
|
245
|
-
}
|
|
246
|
-
} else {
|
|
247
|
-
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`));
|
|
248
|
-
}
|
|
249
|
-
} else if (process.platform === "freebsd") {
|
|
250
|
-
if (process.arch === "x64") {
|
|
251
|
-
try {
|
|
252
|
-
return require("./tui-native.freebsd-x64.node");
|
|
253
|
-
} catch (e) {
|
|
254
|
-
loadErrors.push(e);
|
|
255
|
-
}
|
|
256
|
-
try {
|
|
257
|
-
const binding = require("@visulima/tui-binding-freebsd-x64");
|
|
258
|
-
const bindingPackageVersion = require("@visulima/tui-binding-freebsd-x64/package.json").version;
|
|
259
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
260
|
-
throw new Error(
|
|
261
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
262
|
-
);
|
|
263
|
-
}
|
|
264
|
-
return binding;
|
|
265
|
-
} catch (e) {
|
|
266
|
-
loadErrors.push(e);
|
|
267
|
-
}
|
|
268
|
-
} else if (process.arch === "arm64") {
|
|
269
|
-
try {
|
|
270
|
-
return require("./tui-native.freebsd-arm64.node");
|
|
271
|
-
} catch (e) {
|
|
272
|
-
loadErrors.push(e);
|
|
273
|
-
}
|
|
274
|
-
try {
|
|
275
|
-
const binding = require("@visulima/tui-binding-freebsd-arm64");
|
|
276
|
-
const bindingPackageVersion = require("@visulima/tui-binding-freebsd-arm64/package.json").version;
|
|
277
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
278
|
-
throw new Error(
|
|
279
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
280
|
-
);
|
|
281
|
-
}
|
|
282
|
-
return binding;
|
|
283
|
-
} catch (e) {
|
|
284
|
-
loadErrors.push(e);
|
|
285
|
-
}
|
|
286
|
-
} else {
|
|
287
|
-
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`));
|
|
288
|
-
}
|
|
289
|
-
} else if (process.platform === "linux") {
|
|
290
|
-
if (process.arch === "x64") {
|
|
291
|
-
if (isMusl()) {
|
|
292
|
-
try {
|
|
293
|
-
return require("./tui-native.linux-x64-musl.node");
|
|
294
|
-
} catch (e) {
|
|
295
|
-
loadErrors.push(e);
|
|
296
|
-
}
|
|
297
|
-
try {
|
|
298
|
-
const binding = require("@visulima/tui-binding-linux-x64-musl");
|
|
299
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-x64-musl/package.json").version;
|
|
300
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
301
|
-
throw new Error(
|
|
302
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
303
|
-
);
|
|
304
|
-
}
|
|
305
|
-
return binding;
|
|
306
|
-
} catch (e) {
|
|
307
|
-
loadErrors.push(e);
|
|
308
|
-
}
|
|
309
|
-
} else {
|
|
310
|
-
try {
|
|
311
|
-
return require("./tui-native.linux-x64-gnu.node");
|
|
312
|
-
} catch (e) {
|
|
313
|
-
loadErrors.push(e);
|
|
314
|
-
}
|
|
315
|
-
try {
|
|
316
|
-
const binding = require("@visulima/tui-binding-linux-x64-gnu");
|
|
317
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-x64-gnu/package.json").version;
|
|
318
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
319
|
-
throw new Error(
|
|
320
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
321
|
-
);
|
|
322
|
-
}
|
|
323
|
-
return binding;
|
|
324
|
-
} catch (e) {
|
|
325
|
-
loadErrors.push(e);
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
} else if (process.arch === "arm64") {
|
|
329
|
-
if (isMusl()) {
|
|
330
|
-
try {
|
|
331
|
-
return require("./tui-native.linux-arm64-musl.node");
|
|
332
|
-
} catch (e) {
|
|
333
|
-
loadErrors.push(e);
|
|
334
|
-
}
|
|
335
|
-
try {
|
|
336
|
-
const binding = require("@visulima/tui-binding-linux-arm64-musl");
|
|
337
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm64-musl/package.json").version;
|
|
338
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
339
|
-
throw new Error(
|
|
340
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
341
|
-
);
|
|
342
|
-
}
|
|
343
|
-
return binding;
|
|
344
|
-
} catch (e) {
|
|
345
|
-
loadErrors.push(e);
|
|
346
|
-
}
|
|
347
|
-
} else {
|
|
348
|
-
try {
|
|
349
|
-
return require("./tui-native.linux-arm64-gnu.node");
|
|
350
|
-
} catch (e) {
|
|
351
|
-
loadErrors.push(e);
|
|
352
|
-
}
|
|
353
|
-
try {
|
|
354
|
-
const binding = require("@visulima/tui-binding-linux-arm64-gnu");
|
|
355
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm64-gnu/package.json").version;
|
|
356
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
357
|
-
throw new Error(
|
|
358
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
359
|
-
);
|
|
360
|
-
}
|
|
361
|
-
return binding;
|
|
362
|
-
} catch (e) {
|
|
363
|
-
loadErrors.push(e);
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
} else if (process.arch === "arm") {
|
|
367
|
-
if (isMusl()) {
|
|
368
|
-
try {
|
|
369
|
-
return require("./tui-native.linux-arm-musleabihf.node");
|
|
370
|
-
} catch (e) {
|
|
371
|
-
loadErrors.push(e);
|
|
372
|
-
}
|
|
373
|
-
try {
|
|
374
|
-
const binding = require("@visulima/tui-binding-linux-arm-musleabihf");
|
|
375
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm-musleabihf/package.json").version;
|
|
376
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
377
|
-
throw new Error(
|
|
378
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
379
|
-
);
|
|
380
|
-
}
|
|
381
|
-
return binding;
|
|
382
|
-
} catch (e) {
|
|
383
|
-
loadErrors.push(e);
|
|
384
|
-
}
|
|
385
|
-
} else {
|
|
386
|
-
try {
|
|
387
|
-
return require("./tui-native.linux-arm-gnueabihf.node");
|
|
388
|
-
} catch (e) {
|
|
389
|
-
loadErrors.push(e);
|
|
390
|
-
}
|
|
391
|
-
try {
|
|
392
|
-
const binding = require("@visulima/tui-binding-linux-arm-gnueabihf");
|
|
393
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-arm-gnueabihf/package.json").version;
|
|
394
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
395
|
-
throw new Error(
|
|
396
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
397
|
-
);
|
|
398
|
-
}
|
|
399
|
-
return binding;
|
|
400
|
-
} catch (e) {
|
|
401
|
-
loadErrors.push(e);
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
} else if (process.arch === "loong64") {
|
|
405
|
-
if (isMusl()) {
|
|
406
|
-
try {
|
|
407
|
-
return require("./tui-native.linux-loong64-musl.node");
|
|
408
|
-
} catch (e) {
|
|
409
|
-
loadErrors.push(e);
|
|
410
|
-
}
|
|
411
|
-
try {
|
|
412
|
-
const binding = require("@visulima/tui-binding-linux-loong64-musl");
|
|
413
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-loong64-musl/package.json").version;
|
|
414
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
415
|
-
throw new Error(
|
|
416
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
417
|
-
);
|
|
418
|
-
}
|
|
419
|
-
return binding;
|
|
420
|
-
} catch (e) {
|
|
421
|
-
loadErrors.push(e);
|
|
422
|
-
}
|
|
423
|
-
} else {
|
|
424
|
-
try {
|
|
425
|
-
return require("./tui-native.linux-loong64-gnu.node");
|
|
426
|
-
} catch (e) {
|
|
427
|
-
loadErrors.push(e);
|
|
428
|
-
}
|
|
429
|
-
try {
|
|
430
|
-
const binding = require("@visulima/tui-binding-linux-loong64-gnu");
|
|
431
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-loong64-gnu/package.json").version;
|
|
432
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
433
|
-
throw new Error(
|
|
434
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
435
|
-
);
|
|
436
|
-
}
|
|
437
|
-
return binding;
|
|
438
|
-
} catch (e) {
|
|
439
|
-
loadErrors.push(e);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
} else if (process.arch === "riscv64") {
|
|
443
|
-
if (isMusl()) {
|
|
444
|
-
try {
|
|
445
|
-
return require("./tui-native.linux-riscv64-musl.node");
|
|
446
|
-
} catch (e) {
|
|
447
|
-
loadErrors.push(e);
|
|
448
|
-
}
|
|
449
|
-
try {
|
|
450
|
-
const binding = require("@visulima/tui-binding-linux-riscv64-musl");
|
|
451
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-riscv64-musl/package.json").version;
|
|
452
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
453
|
-
throw new Error(
|
|
454
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
455
|
-
);
|
|
456
|
-
}
|
|
457
|
-
return binding;
|
|
458
|
-
} catch (e) {
|
|
459
|
-
loadErrors.push(e);
|
|
460
|
-
}
|
|
461
|
-
} else {
|
|
462
|
-
try {
|
|
463
|
-
return require("./tui-native.linux-riscv64-gnu.node");
|
|
464
|
-
} catch (e) {
|
|
465
|
-
loadErrors.push(e);
|
|
466
|
-
}
|
|
467
|
-
try {
|
|
468
|
-
const binding = require("@visulima/tui-binding-linux-riscv64-gnu");
|
|
469
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-riscv64-gnu/package.json").version;
|
|
470
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
471
|
-
throw new Error(
|
|
472
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
473
|
-
);
|
|
474
|
-
}
|
|
475
|
-
return binding;
|
|
476
|
-
} catch (e) {
|
|
477
|
-
loadErrors.push(e);
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
} else if (process.arch === "ppc64") {
|
|
481
|
-
try {
|
|
482
|
-
return require("./tui-native.linux-ppc64-gnu.node");
|
|
483
|
-
} catch (e) {
|
|
484
|
-
loadErrors.push(e);
|
|
485
|
-
}
|
|
486
|
-
try {
|
|
487
|
-
const binding = require("@visulima/tui-binding-linux-ppc64-gnu");
|
|
488
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-ppc64-gnu/package.json").version;
|
|
489
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
490
|
-
throw new Error(
|
|
491
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
492
|
-
);
|
|
493
|
-
}
|
|
494
|
-
return binding;
|
|
495
|
-
} catch (e) {
|
|
496
|
-
loadErrors.push(e);
|
|
497
|
-
}
|
|
498
|
-
} else if (process.arch === "s390x") {
|
|
499
|
-
try {
|
|
500
|
-
return require("./tui-native.linux-s390x-gnu.node");
|
|
501
|
-
} catch (e) {
|
|
502
|
-
loadErrors.push(e);
|
|
503
|
-
}
|
|
504
|
-
try {
|
|
505
|
-
const binding = require("@visulima/tui-binding-linux-s390x-gnu");
|
|
506
|
-
const bindingPackageVersion = require("@visulima/tui-binding-linux-s390x-gnu/package.json").version;
|
|
507
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
508
|
-
throw new Error(
|
|
509
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
510
|
-
);
|
|
511
|
-
}
|
|
512
|
-
return binding;
|
|
513
|
-
} catch (e) {
|
|
514
|
-
loadErrors.push(e);
|
|
515
|
-
}
|
|
516
|
-
} else {
|
|
517
|
-
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`));
|
|
518
|
-
}
|
|
519
|
-
} else if (process.platform === "openharmony") {
|
|
520
|
-
if (process.arch === "arm64") {
|
|
521
|
-
try {
|
|
522
|
-
return require("./tui-native.openharmony-arm64.node");
|
|
523
|
-
} catch (e) {
|
|
524
|
-
loadErrors.push(e);
|
|
525
|
-
}
|
|
526
|
-
try {
|
|
527
|
-
const binding = require("@visulima/tui-binding-openharmony-arm64");
|
|
528
|
-
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-arm64/package.json").version;
|
|
529
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
530
|
-
throw new Error(
|
|
531
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
532
|
-
);
|
|
533
|
-
}
|
|
534
|
-
return binding;
|
|
535
|
-
} catch (e) {
|
|
536
|
-
loadErrors.push(e);
|
|
537
|
-
}
|
|
538
|
-
} else if (process.arch === "x64") {
|
|
539
|
-
try {
|
|
540
|
-
return require("./tui-native.openharmony-x64.node");
|
|
541
|
-
} catch (e) {
|
|
542
|
-
loadErrors.push(e);
|
|
543
|
-
}
|
|
544
|
-
try {
|
|
545
|
-
const binding = require("@visulima/tui-binding-openharmony-x64");
|
|
546
|
-
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-x64/package.json").version;
|
|
547
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
548
|
-
throw new Error(
|
|
549
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
550
|
-
);
|
|
551
|
-
}
|
|
552
|
-
return binding;
|
|
553
|
-
} catch (e) {
|
|
554
|
-
loadErrors.push(e);
|
|
555
|
-
}
|
|
556
|
-
} else if (process.arch === "arm") {
|
|
557
|
-
try {
|
|
558
|
-
return require("./tui-native.openharmony-arm.node");
|
|
559
|
-
} catch (e) {
|
|
560
|
-
loadErrors.push(e);
|
|
561
|
-
}
|
|
562
|
-
try {
|
|
563
|
-
const binding = require("@visulima/tui-binding-openharmony-arm");
|
|
564
|
-
const bindingPackageVersion = require("@visulima/tui-binding-openharmony-arm/package.json").version;
|
|
565
|
-
if (bindingPackageVersion !== "1.0.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") {
|
|
566
|
-
throw new Error(
|
|
567
|
-
`Native binding package version mismatch, expected 1.0.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`,
|
|
568
|
-
);
|
|
569
|
-
}
|
|
570
|
-
return binding;
|
|
571
|
-
} catch (e) {
|
|
572
|
-
loadErrors.push(e);
|
|
573
|
-
}
|
|
574
|
-
} else {
|
|
575
|
-
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`));
|
|
289
|
+
loadErrors.push(e)
|
|
290
|
+
}
|
|
291
|
+
try {
|
|
292
|
+
const binding = require('@visulima/tui-binding-linux-x64-gnu')
|
|
293
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-x64-gnu/package.json').version
|
|
294
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
|
+
}
|
|
297
|
+
return binding
|
|
298
|
+
} catch (e) {
|
|
299
|
+
loadErrors.push(e)
|
|
576
300
|
}
|
|
301
|
+
}
|
|
302
|
+
} else if (process.arch === 'arm64') {
|
|
303
|
+
if (isMusl()) {
|
|
304
|
+
try {
|
|
305
|
+
return require('./tui-native.linux-arm64-musl.node')
|
|
306
|
+
} catch (e) {
|
|
307
|
+
loadErrors.push(e)
|
|
308
|
+
}
|
|
309
|
+
try {
|
|
310
|
+
const binding = require('@visulima/tui-binding-linux-arm64-musl')
|
|
311
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm64-musl/package.json').version
|
|
312
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
|
+
}
|
|
315
|
+
return binding
|
|
316
|
+
} catch (e) {
|
|
317
|
+
loadErrors.push(e)
|
|
318
|
+
}
|
|
319
|
+
} else {
|
|
320
|
+
try {
|
|
321
|
+
return require('./tui-native.linux-arm64-gnu.node')
|
|
322
|
+
} catch (e) {
|
|
323
|
+
loadErrors.push(e)
|
|
324
|
+
}
|
|
325
|
+
try {
|
|
326
|
+
const binding = require('@visulima/tui-binding-linux-arm64-gnu')
|
|
327
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm64-gnu/package.json').version
|
|
328
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
|
+
}
|
|
331
|
+
return binding
|
|
332
|
+
} catch (e) {
|
|
333
|
+
loadErrors.push(e)
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
} else if (process.arch === 'arm') {
|
|
337
|
+
if (isMusl()) {
|
|
338
|
+
try {
|
|
339
|
+
return require('./tui-native.linux-arm-musleabihf.node')
|
|
340
|
+
} catch (e) {
|
|
341
|
+
loadErrors.push(e)
|
|
342
|
+
}
|
|
343
|
+
try {
|
|
344
|
+
const binding = require('@visulima/tui-binding-linux-arm-musleabihf')
|
|
345
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm-musleabihf/package.json').version
|
|
346
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
|
+
}
|
|
349
|
+
return binding
|
|
350
|
+
} catch (e) {
|
|
351
|
+
loadErrors.push(e)
|
|
352
|
+
}
|
|
353
|
+
} else {
|
|
354
|
+
try {
|
|
355
|
+
return require('./tui-native.linux-arm-gnueabihf.node')
|
|
356
|
+
} catch (e) {
|
|
357
|
+
loadErrors.push(e)
|
|
358
|
+
}
|
|
359
|
+
try {
|
|
360
|
+
const binding = require('@visulima/tui-binding-linux-arm-gnueabihf')
|
|
361
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-arm-gnueabihf/package.json').version
|
|
362
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
|
+
}
|
|
365
|
+
return binding
|
|
366
|
+
} catch (e) {
|
|
367
|
+
loadErrors.push(e)
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
} else if (process.arch === 'loong64') {
|
|
371
|
+
if (isMusl()) {
|
|
372
|
+
try {
|
|
373
|
+
return require('./tui-native.linux-loong64-musl.node')
|
|
374
|
+
} catch (e) {
|
|
375
|
+
loadErrors.push(e)
|
|
376
|
+
}
|
|
377
|
+
try {
|
|
378
|
+
const binding = require('@visulima/tui-binding-linux-loong64-musl')
|
|
379
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-loong64-musl/package.json').version
|
|
380
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
|
+
}
|
|
383
|
+
return binding
|
|
384
|
+
} catch (e) {
|
|
385
|
+
loadErrors.push(e)
|
|
386
|
+
}
|
|
387
|
+
} else {
|
|
388
|
+
try {
|
|
389
|
+
return require('./tui-native.linux-loong64-gnu.node')
|
|
390
|
+
} catch (e) {
|
|
391
|
+
loadErrors.push(e)
|
|
392
|
+
}
|
|
393
|
+
try {
|
|
394
|
+
const binding = require('@visulima/tui-binding-linux-loong64-gnu')
|
|
395
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-loong64-gnu/package.json').version
|
|
396
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
|
+
}
|
|
399
|
+
return binding
|
|
400
|
+
} catch (e) {
|
|
401
|
+
loadErrors.push(e)
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
} else if (process.arch === 'riscv64') {
|
|
405
|
+
if (isMusl()) {
|
|
406
|
+
try {
|
|
407
|
+
return require('./tui-native.linux-riscv64-musl.node')
|
|
408
|
+
} catch (e) {
|
|
409
|
+
loadErrors.push(e)
|
|
410
|
+
}
|
|
411
|
+
try {
|
|
412
|
+
const binding = require('@visulima/tui-binding-linux-riscv64-musl')
|
|
413
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-riscv64-musl/package.json').version
|
|
414
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
|
+
}
|
|
417
|
+
return binding
|
|
418
|
+
} catch (e) {
|
|
419
|
+
loadErrors.push(e)
|
|
420
|
+
}
|
|
421
|
+
} else {
|
|
422
|
+
try {
|
|
423
|
+
return require('./tui-native.linux-riscv64-gnu.node')
|
|
424
|
+
} catch (e) {
|
|
425
|
+
loadErrors.push(e)
|
|
426
|
+
}
|
|
427
|
+
try {
|
|
428
|
+
const binding = require('@visulima/tui-binding-linux-riscv64-gnu')
|
|
429
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-riscv64-gnu/package.json').version
|
|
430
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
|
+
}
|
|
433
|
+
return binding
|
|
434
|
+
} catch (e) {
|
|
435
|
+
loadErrors.push(e)
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
} else if (process.arch === 'ppc64') {
|
|
439
|
+
try {
|
|
440
|
+
return require('./tui-native.linux-ppc64-gnu.node')
|
|
441
|
+
} catch (e) {
|
|
442
|
+
loadErrors.push(e)
|
|
443
|
+
}
|
|
444
|
+
try {
|
|
445
|
+
const binding = require('@visulima/tui-binding-linux-ppc64-gnu')
|
|
446
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-ppc64-gnu/package.json').version
|
|
447
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
|
+
}
|
|
450
|
+
return binding
|
|
451
|
+
} catch (e) {
|
|
452
|
+
loadErrors.push(e)
|
|
453
|
+
}
|
|
454
|
+
} else if (process.arch === 's390x') {
|
|
455
|
+
try {
|
|
456
|
+
return require('./tui-native.linux-s390x-gnu.node')
|
|
457
|
+
} catch (e) {
|
|
458
|
+
loadErrors.push(e)
|
|
459
|
+
}
|
|
460
|
+
try {
|
|
461
|
+
const binding = require('@visulima/tui-binding-linux-s390x-gnu')
|
|
462
|
+
const bindingPackageVersion = require('@visulima/tui-binding-linux-s390x-gnu/package.json').version
|
|
463
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
|
+
}
|
|
466
|
+
return binding
|
|
467
|
+
} catch (e) {
|
|
468
|
+
loadErrors.push(e)
|
|
469
|
+
}
|
|
577
470
|
} else {
|
|
578
|
-
|
|
471
|
+
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
|
|
579
472
|
}
|
|
473
|
+
} else if (process.platform === 'openharmony') {
|
|
474
|
+
if (process.arch === 'arm64') {
|
|
475
|
+
try {
|
|
476
|
+
return require('./tui-native.openharmony-arm64.node')
|
|
477
|
+
} catch (e) {
|
|
478
|
+
loadErrors.push(e)
|
|
479
|
+
}
|
|
480
|
+
try {
|
|
481
|
+
const binding = require('@visulima/tui-binding-openharmony-arm64')
|
|
482
|
+
const bindingPackageVersion = require('@visulima/tui-binding-openharmony-arm64/package.json').version
|
|
483
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
|
+
}
|
|
486
|
+
return binding
|
|
487
|
+
} catch (e) {
|
|
488
|
+
loadErrors.push(e)
|
|
489
|
+
}
|
|
490
|
+
} else if (process.arch === 'x64') {
|
|
491
|
+
try {
|
|
492
|
+
return require('./tui-native.openharmony-x64.node')
|
|
493
|
+
} catch (e) {
|
|
494
|
+
loadErrors.push(e)
|
|
495
|
+
}
|
|
496
|
+
try {
|
|
497
|
+
const binding = require('@visulima/tui-binding-openharmony-x64')
|
|
498
|
+
const bindingPackageVersion = require('@visulima/tui-binding-openharmony-x64/package.json').version
|
|
499
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
|
+
}
|
|
502
|
+
return binding
|
|
503
|
+
} catch (e) {
|
|
504
|
+
loadErrors.push(e)
|
|
505
|
+
}
|
|
506
|
+
} else if (process.arch === 'arm') {
|
|
507
|
+
try {
|
|
508
|
+
return require('./tui-native.openharmony-arm.node')
|
|
509
|
+
} catch (e) {
|
|
510
|
+
loadErrors.push(e)
|
|
511
|
+
}
|
|
512
|
+
try {
|
|
513
|
+
const binding = require('@visulima/tui-binding-openharmony-arm')
|
|
514
|
+
const bindingPackageVersion = require('@visulima/tui-binding-openharmony-arm/package.json').version
|
|
515
|
+
if (bindingPackageVersion !== '1.0.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
|
+
}
|
|
518
|
+
return binding
|
|
519
|
+
} catch (e) {
|
|
520
|
+
loadErrors.push(e)
|
|
521
|
+
}
|
|
522
|
+
} else {
|
|
523
|
+
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`))
|
|
524
|
+
}
|
|
525
|
+
} else {
|
|
526
|
+
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
|
|
527
|
+
}
|
|
580
528
|
}
|
|
581
529
|
|
|
582
|
-
nativeBinding = requireNative()
|
|
530
|
+
nativeBinding = requireNative()
|
|
583
531
|
|
|
584
532
|
// NAPI_RS_FORCE_WASI is a tri-state flag:
|
|
585
533
|
// unset / any other value → native binding preferred, WASI is only a fallback
|
|
@@ -588,59 +536,61 @@ nativeBinding = requireNative();
|
|
|
588
536
|
// Treating any non-empty string as truthy (the historical behavior) meant
|
|
589
537
|
// NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered
|
|
590
538
|
// the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file.
|
|
591
|
-
const forceWasi =
|
|
539
|
+
const forceWasi =
|
|
540
|
+
process.env.NAPI_RS_FORCE_WASI === 'true' || process.env.NAPI_RS_FORCE_WASI === 'error'
|
|
592
541
|
|
|
593
542
|
if (!nativeBinding || forceWasi) {
|
|
594
|
-
|
|
595
|
-
|
|
543
|
+
let wasiBinding = null
|
|
544
|
+
let wasiBindingError = null
|
|
545
|
+
try {
|
|
546
|
+
wasiBinding = require('./tui-native.wasi.cjs')
|
|
547
|
+
nativeBinding = wasiBinding
|
|
548
|
+
} catch (err) {
|
|
549
|
+
if (forceWasi) {
|
|
550
|
+
wasiBindingError = err
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
if (!nativeBinding || forceWasi) {
|
|
596
554
|
try {
|
|
597
|
-
|
|
598
|
-
|
|
555
|
+
wasiBinding = require('@visulima/tui-binding-wasm32-wasi')
|
|
556
|
+
nativeBinding = wasiBinding
|
|
599
557
|
} catch (err) {
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
try {
|
|
606
|
-
wasiBinding = require("@visulima/tui-binding-wasm32-wasi");
|
|
607
|
-
nativeBinding = wasiBinding;
|
|
608
|
-
} catch (err) {
|
|
609
|
-
if (forceWasi) {
|
|
610
|
-
if (!wasiBindingError) {
|
|
611
|
-
wasiBindingError = err;
|
|
612
|
-
} else {
|
|
613
|
-
wasiBindingError.cause = err;
|
|
614
|
-
}
|
|
615
|
-
loadErrors.push(err);
|
|
616
|
-
}
|
|
558
|
+
if (forceWasi) {
|
|
559
|
+
if (!wasiBindingError) {
|
|
560
|
+
wasiBindingError = err
|
|
561
|
+
} else {
|
|
562
|
+
wasiBindingError.cause = err
|
|
617
563
|
}
|
|
564
|
+
loadErrors.push(err)
|
|
565
|
+
}
|
|
618
566
|
}
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
567
|
+
}
|
|
568
|
+
if (process.env.NAPI_RS_FORCE_WASI === 'error' && !wasiBinding) {
|
|
569
|
+
const error = new Error('WASI binding not found and NAPI_RS_FORCE_WASI is set to error')
|
|
570
|
+
error.cause = wasiBindingError
|
|
571
|
+
throw error
|
|
572
|
+
}
|
|
624
573
|
}
|
|
625
574
|
|
|
626
575
|
if (!nativeBinding) {
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
576
|
+
if (loadErrors.length > 0) {
|
|
577
|
+
const error = new Error(
|
|
578
|
+
`Cannot find native binding. ` +
|
|
579
|
+
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
|
|
580
|
+
'Please try `npm i` again after removing both package-lock.json and node_modules directory.',
|
|
581
|
+
)
|
|
582
|
+
// assign instead of the `new Error(message, { cause })` options form,
|
|
583
|
+
// which Node < 16.9 silently ignores
|
|
584
|
+
error.cause = loadErrors.reduce((err, cur) => {
|
|
585
|
+
cur.cause = err
|
|
586
|
+
return cur
|
|
587
|
+
})
|
|
588
|
+
throw error
|
|
589
|
+
}
|
|
590
|
+
throw new Error(`Failed to load native binding`)
|
|
641
591
|
}
|
|
642
592
|
|
|
643
|
-
const { Renderer, TerminalGuard, terminalSize } = nativeBinding
|
|
644
|
-
export { Renderer }
|
|
645
|
-
export { TerminalGuard }
|
|
646
|
-
export { terminalSize }
|
|
593
|
+
const { Renderer, TerminalGuard, terminalSize } = nativeBinding
|
|
594
|
+
export { Renderer }
|
|
595
|
+
export { TerminalGuard }
|
|
596
|
+
export { terminalSize }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/tui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "React-based TUI library powered by a native Rust diff engine, drop-in Ink-compatible API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -655,14 +655,14 @@
|
|
|
655
655
|
}
|
|
656
656
|
},
|
|
657
657
|
"optionalDependencies": {
|
|
658
|
-
"@visulima/tui-binding-darwin-arm64": "1.0.
|
|
659
|
-
"@visulima/tui-binding-
|
|
660
|
-
"@visulima/tui-binding-linux-
|
|
661
|
-
"@visulima/tui-binding-linux-arm64-musl": "1.0.
|
|
662
|
-
"@visulima/tui-binding-
|
|
663
|
-
"@visulima/tui-binding-linux-x64-musl": "1.0.
|
|
664
|
-
"@visulima/tui-binding-win32-arm64-msvc": "1.0.
|
|
665
|
-
"@visulima/tui-binding-win32-x64-msvc": "1.0.
|
|
658
|
+
"@visulima/tui-binding-darwin-arm64": "1.0.3",
|
|
659
|
+
"@visulima/tui-binding-linux-arm64-gnu": "1.0.3",
|
|
660
|
+
"@visulima/tui-binding-linux-x64-gnu": "1.0.3",
|
|
661
|
+
"@visulima/tui-binding-linux-arm64-musl": "1.0.3",
|
|
662
|
+
"@visulima/tui-binding-darwin-x64": "1.0.3",
|
|
663
|
+
"@visulima/tui-binding-linux-x64-musl": "1.0.3",
|
|
664
|
+
"@visulima/tui-binding-win32-arm64-msvc": "1.0.3",
|
|
665
|
+
"@visulima/tui-binding-win32-x64-msvc": "1.0.3"
|
|
666
666
|
},
|
|
667
667
|
"engines": {
|
|
668
668
|
"node": "^22.14.0 || >=24.10.0"
|