@takumi-rs/core 0.66.5 → 0.66.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 +44 -2
- package/index.js +52 -52
- package/package.json +14 -9
- package/tsconfig.json +0 -29
package/index.d.ts
CHANGED
|
@@ -34,7 +34,9 @@ export interface AnyNode {
|
|
|
34
34
|
* @deprecated use `ImageSource` instead.
|
|
35
35
|
*/
|
|
36
36
|
export type PersistentImage = ImageSource;
|
|
37
|
+
/** The main renderer for Takumi image rendering engine (Node.js version). */
|
|
37
38
|
export declare class Renderer {
|
|
39
|
+
/** Creates a new Renderer instance. */
|
|
38
40
|
constructor(options?: ConstructRendererOptions | undefined | null)
|
|
39
41
|
/** @deprecated This function does nothing. */
|
|
40
42
|
purgeResourcesCache(): void
|
|
@@ -42,29 +44,43 @@ export declare class Renderer {
|
|
|
42
44
|
purgeFontCache(): void
|
|
43
45
|
/** @deprecated Use `putPersistentImage` instead (to align with the naming convention for sync/async functions). */
|
|
44
46
|
putPersistentImageAsync(src: string, data: Uint8Array | ArrayBuffer, signal?: AbortSignal): Promise<void>
|
|
47
|
+
/** Puts a persistent image into the renderer's internal store asynchronously. */
|
|
45
48
|
putPersistentImage(src: string, data: Uint8Array | ArrayBuffer, signal?: AbortSignal): Promise<void>
|
|
46
49
|
/** @deprecated Use `loadFont` instead (to align with the naming convention for sync/async functions). */
|
|
47
50
|
loadFontAsync(data: Font, signal?: AbortSignal): Promise<number>
|
|
51
|
+
/** Loads a font into the renderer asynchronously. */
|
|
48
52
|
loadFont(data: Font, signal?: AbortSignal): Promise<number>
|
|
49
53
|
/** @deprecated Use `loadFonts` instead (to align with the naming convention for sync/async functions). */
|
|
50
54
|
loadFontsAsync(fonts: Font[], signal?: AbortSignal): Promise<number>
|
|
55
|
+
/** Loads multiple fonts into the renderer asynchronously. */
|
|
51
56
|
loadFonts(fonts: Font[], signal?: AbortSignal): Promise<number>
|
|
57
|
+
/** Clears the renderer's internal image store. */
|
|
52
58
|
clearImageStore(): void
|
|
59
|
+
/** Renders a node tree into an image buffer asynchronously. */
|
|
53
60
|
render(source: AnyNode, options?: RenderOptions, signal?: AbortSignal): Promise<Buffer>
|
|
54
61
|
/** @deprecated Use `render` instead (to align with the naming convention for sync/async functions). */
|
|
55
62
|
renderAsync(source: AnyNode, options?: RenderOptions, signal?: AbortSignal): Promise<Buffer>
|
|
63
|
+
/** Measures a node tree and returns layout information asynchronously. */
|
|
56
64
|
measure(source: AnyNode, options?: RenderOptions, signal?: AbortSignal): Promise<MeasuredNode>
|
|
65
|
+
/** Renders an animation sequence into a buffer asynchronously. */
|
|
57
66
|
renderAnimation(source: AnimationFrameSource[], options: RenderAnimationOptions, signal?: AbortSignal): Promise<Buffer>
|
|
58
67
|
}
|
|
59
68
|
|
|
69
|
+
/** Represents a single frame in an animation sequence. */
|
|
60
70
|
export interface AnimationFrameSource {
|
|
71
|
+
/** The node tree to render for this frame. */
|
|
61
72
|
node: AnyNode
|
|
73
|
+
/** The duration of this frame in milliseconds. */
|
|
62
74
|
durationMs: number
|
|
63
75
|
}
|
|
64
76
|
|
|
65
|
-
|
|
77
|
+
/** Output format for animated images. */
|
|
78
|
+
export type AnimationOutputFormat = /** Animated WebP format. */
|
|
79
|
+
'webp'|
|
|
80
|
+
/** Animated PNG format. */
|
|
66
81
|
'apng';
|
|
67
82
|
|
|
83
|
+
/** Options for constructing a Renderer instance. */
|
|
68
84
|
export interface ConstructRendererOptions {
|
|
69
85
|
/** The images that needs to be preloaded into the renderer. */
|
|
70
86
|
persistentImages?: Array<ImageSource>
|
|
@@ -80,29 +96,48 @@ export interface ConstructRendererOptions {
|
|
|
80
96
|
/** Collects the fetch task urls from the node. */
|
|
81
97
|
export declare function extractResourceUrls(node: AnyNode): Array<string>
|
|
82
98
|
|
|
99
|
+
/** An image source with its URL and raw data. */
|
|
83
100
|
export interface ImageSource {
|
|
101
|
+
/** The source URL of the image. */
|
|
84
102
|
src: string
|
|
103
|
+
/** The raw image data (Uint8Array or ArrayBuffer). */
|
|
85
104
|
data: Uint8Array | ArrayBuffer
|
|
86
105
|
}
|
|
87
106
|
|
|
107
|
+
/** Represents a node that has been measured, including its layout information. */
|
|
88
108
|
export interface MeasuredNode {
|
|
109
|
+
/** The measured width of the node. */
|
|
89
110
|
width: number
|
|
111
|
+
/** The measured height of the node. */
|
|
90
112
|
height: number
|
|
113
|
+
/** The transformation matrix of the node. */
|
|
91
114
|
transform: [number, number, number, number, number, number]
|
|
115
|
+
/** The children of the node. */
|
|
92
116
|
children: Array<MeasuredNode>
|
|
117
|
+
/** The text runs within the node. */
|
|
93
118
|
runs: Array<MeasuredTextRun>
|
|
94
119
|
}
|
|
95
120
|
|
|
121
|
+
/** Represents a single run of text in a measured node. */
|
|
96
122
|
export interface MeasuredTextRun {
|
|
123
|
+
/** The text content of the run. */
|
|
97
124
|
text: string
|
|
125
|
+
/** The inline x-coordinate of the run. */
|
|
98
126
|
x: number
|
|
127
|
+
/** The inline y-coordinate of the run. */
|
|
99
128
|
y: number
|
|
129
|
+
/** The width of the run. */
|
|
100
130
|
width: number
|
|
131
|
+
/** The height of the run. */
|
|
101
132
|
height: number
|
|
102
133
|
}
|
|
103
134
|
|
|
104
|
-
|
|
135
|
+
/** Output format for static images. */
|
|
136
|
+
export type OutputFormat = /** WebP format. */
|
|
137
|
+
'webp'|
|
|
138
|
+
/** PNG format. */
|
|
105
139
|
'png'|
|
|
140
|
+
/** JPEG format. */
|
|
106
141
|
'jpeg'|
|
|
107
142
|
/** @deprecated Use lowercase `webp` instead| may be removed in the future */
|
|
108
143
|
'WebP'|
|
|
@@ -110,15 +145,22 @@ export type OutputFormat = 'webp'|
|
|
|
110
145
|
'Jpeg'|
|
|
111
146
|
/** @deprecated Use lowercase `png` instead| may be removed in the future */
|
|
112
147
|
'Png'|
|
|
148
|
+
/** Raw pixels format. */
|
|
113
149
|
'raw';
|
|
114
150
|
|
|
151
|
+
/** Options for rendering an animated image. */
|
|
115
152
|
export interface RenderAnimationOptions {
|
|
153
|
+
/** Whether to draw debug borders around layout elements. */
|
|
116
154
|
drawDebugBorder?: boolean
|
|
155
|
+
/** The width of each frame in pixels. */
|
|
117
156
|
width: number
|
|
157
|
+
/** The height of each frame in pixels. */
|
|
118
158
|
height: number
|
|
159
|
+
/** The output animation format (WebP or APNG). */
|
|
119
160
|
format?: AnimationOutputFormat
|
|
120
161
|
}
|
|
121
162
|
|
|
163
|
+
/** Options for rendering an image. */
|
|
122
164
|
export interface RenderOptions {
|
|
123
165
|
/** The width of the image. If not provided, the width will be automatically calculated based on the content. */
|
|
124
166
|
width?: number
|
package/index.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@takumi-rs/core-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@takumi-rs/core-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '0.66.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
84
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@takumi-rs/core-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@takumi-rs/core-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '0.66.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
100
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@takumi-rs/core-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@takumi-rs/core-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.66.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
121
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@takumi-rs/core-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@takumi-rs/core-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '0.66.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
137
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@takumi-rs/core-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@takumi-rs/core-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '0.66.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
154
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@takumi-rs/core-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@takumi-rs/core-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '0.66.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
170
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@takumi-rs/core-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@takumi-rs/core-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '0.66.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
189
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@takumi-rs/core-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@takumi-rs/core-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '0.66.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
205
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@takumi-rs/core-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@takumi-rs/core-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '0.66.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
221
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@takumi-rs/core-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@takumi-rs/core-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '0.66.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
241
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@takumi-rs/core-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@takumi-rs/core-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '0.66.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
257
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@takumi-rs/core-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@takumi-rs/core-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '0.66.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
278
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@takumi-rs/core-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@takumi-rs/core-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '0.66.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
294
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@takumi-rs/core-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@takumi-rs/core-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '0.66.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
312
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@takumi-rs/core-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@takumi-rs/core-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '0.66.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
328
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@takumi-rs/core-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@takumi-rs/core-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '0.66.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
346
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@takumi-rs/core-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@takumi-rs/core-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '0.66.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
362
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@takumi-rs/core-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@takumi-rs/core-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '0.66.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
380
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@takumi-rs/core-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@takumi-rs/core-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '0.66.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
396
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@takumi-rs/core-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@takumi-rs/core-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '0.66.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
414
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@takumi-rs/core-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@takumi-rs/core-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '0.66.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
430
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@takumi-rs/core-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@takumi-rs/core-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '0.66.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
447
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@takumi-rs/core-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@takumi-rs/core-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '0.66.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
463
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@takumi-rs/core-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@takumi-rs/core-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '0.66.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
483
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@takumi-rs/core-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@takumi-rs/core-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '0.66.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
499
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@takumi-rs/core-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@takumi-rs/core-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '0.66.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.66.
|
|
515
|
+
if (bindingPackageVersion !== '0.66.7' && 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 0.66.7 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takumi-rs/core",
|
|
3
|
-
"version": "0.66.
|
|
3
|
+
"version": "0.66.7",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "me@kane.tw",
|
|
6
6
|
"name": "Kane Wang",
|
|
@@ -57,14 +57,19 @@
|
|
|
57
57
|
},
|
|
58
58
|
"type": "module",
|
|
59
59
|
"types": "index.d.ts",
|
|
60
|
+
"files": [
|
|
61
|
+
"index.d.ts",
|
|
62
|
+
"index.js",
|
|
63
|
+
"README.md"
|
|
64
|
+
],
|
|
60
65
|
"optionalDependencies": {
|
|
61
|
-
"@takumi-rs/core-darwin-x64": "0.66.
|
|
62
|
-
"@takumi-rs/core-darwin-arm64": "0.66.
|
|
63
|
-
"@takumi-rs/core-linux-arm64-gnu": "0.66.
|
|
64
|
-
"@takumi-rs/core-linux-arm64-musl": "0.66.
|
|
65
|
-
"@takumi-rs/core-win32-arm64-msvc": "0.66.
|
|
66
|
-
"@takumi-rs/core-linux-x64-gnu": "0.66.
|
|
67
|
-
"@takumi-rs/core-linux-x64-musl": "0.66.
|
|
68
|
-
"@takumi-rs/core-win32-x64-msvc": "0.66.
|
|
66
|
+
"@takumi-rs/core-darwin-x64": "0.66.7",
|
|
67
|
+
"@takumi-rs/core-darwin-arm64": "0.66.7",
|
|
68
|
+
"@takumi-rs/core-linux-arm64-gnu": "0.66.7",
|
|
69
|
+
"@takumi-rs/core-linux-arm64-musl": "0.66.7",
|
|
70
|
+
"@takumi-rs/core-win32-arm64-msvc": "0.66.7",
|
|
71
|
+
"@takumi-rs/core-linux-x64-gnu": "0.66.7",
|
|
72
|
+
"@takumi-rs/core-linux-x64-musl": "0.66.7",
|
|
73
|
+
"@takumi-rs/core-win32-x64-msvc": "0.66.7"
|
|
69
74
|
}
|
|
70
75
|
}
|
package/tsconfig.json
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
// Environment setup & latest features
|
|
4
|
-
"lib": ["ESNext"],
|
|
5
|
-
"target": "ESNext",
|
|
6
|
-
"module": "Preserve",
|
|
7
|
-
"moduleDetection": "force",
|
|
8
|
-
"jsx": "react-jsx",
|
|
9
|
-
"allowJs": true,
|
|
10
|
-
|
|
11
|
-
// Bundler mode
|
|
12
|
-
"moduleResolution": "bundler",
|
|
13
|
-
"allowImportingTsExtensions": true,
|
|
14
|
-
"verbatimModuleSyntax": false,
|
|
15
|
-
"noEmit": true,
|
|
16
|
-
|
|
17
|
-
// Best practices
|
|
18
|
-
"strict": true,
|
|
19
|
-
"skipLibCheck": true,
|
|
20
|
-
"noFallthroughCasesInSwitch": true,
|
|
21
|
-
"noUncheckedIndexedAccess": true,
|
|
22
|
-
"noImplicitOverride": true,
|
|
23
|
-
|
|
24
|
-
// Some stricter flags (disabled by default)
|
|
25
|
-
"noUnusedLocals": false,
|
|
26
|
-
"noUnusedParameters": false,
|
|
27
|
-
"noPropertyAccessFromIndexSignature": false
|
|
28
|
-
}
|
|
29
|
-
}
|