@takumi-rs/core 0.32.2 → 0.33.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ # @takumi-rs/core
2
+
3
+ ## 0.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 98755a7: **drop support for `debug` field, replace with `draw_debug_border` option in rendering functions**
package/README.md CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  Takumi is a **image rendering engine** written in Rust and this package provides Node.js bindings using [napi-rs](https://napi.rs/).
4
4
 
5
- If you are looking for WebAssembly bindings, please refer to the [@takumi-rs/wasm](https://npmjs.com/package/@takumi-rs/wasm) package.
5
+ Please refer to the [Node.js or Bun](https://takumi.kane.tw/docs/getting-started/nodejs) page in our official documentation for more details.
6
6
 
7
- Please refer to the [Use Takumi in Node.js or Bun](https://takumi.kane.tw/docs/getting-started/nodejs) page in our official documentation for more details.
7
+ If you are looking for WebAssembly bindings, take a look at the [@takumi-rs/wasm](https://npmjs.com/package/@takumi-rs/wasm) package.
package/index.d.ts CHANGED
@@ -35,7 +35,6 @@ export type AnimationOutputFormat = 'webp'|
35
35
  'apng';
36
36
 
37
37
  export interface ConstructRendererOptions {
38
- debug?: boolean
39
38
  persistentImages?: Array<PersistentImage>
40
39
  fonts?: Font[] | undefined
41
40
  loadDefaultFonts?: boolean
@@ -75,6 +74,7 @@ export interface PersistentImage {
75
74
  }
76
75
 
77
76
  export interface RenderAnimationOptions {
77
+ drawDebugBorder?: boolean
78
78
  width: number
79
79
  height: number
80
80
  format?: AnimationOutputFormat
@@ -85,4 +85,5 @@ export interface RenderOptions {
85
85
  height: number
86
86
  format?: OutputFormat
87
87
  quality?: number
88
+ drawDebugBorder?: boolean
88
89
  }
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.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 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.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
102
102
  }
103
103
  return binding
104
104
  } catch (e) {
@@ -117,8 +117,8 @@ function requireNative() {
117
117
  try {
118
118
  const binding = require('@takumi-rs/core-win32-x64-msvc')
119
119
  const bindingPackageVersion = require('@takumi-rs/core-win32-x64-msvc/package.json').version
120
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
121
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
120
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
121
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
122
122
  }
123
123
  return binding
124
124
  } catch (e) {
@@ -133,8 +133,8 @@ function requireNative() {
133
133
  try {
134
134
  const binding = require('@takumi-rs/core-win32-ia32-msvc')
135
135
  const bindingPackageVersion = require('@takumi-rs/core-win32-ia32-msvc/package.json').version
136
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
137
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
136
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
137
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
138
138
  }
139
139
  return binding
140
140
  } catch (e) {
@@ -149,8 +149,8 @@ function requireNative() {
149
149
  try {
150
150
  const binding = require('@takumi-rs/core-win32-arm64-msvc')
151
151
  const bindingPackageVersion = require('@takumi-rs/core-win32-arm64-msvc/package.json').version
152
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
153
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
152
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
153
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
154
  }
155
155
  return binding
156
156
  } catch (e) {
@@ -168,8 +168,8 @@ function requireNative() {
168
168
  try {
169
169
  const binding = require('@takumi-rs/core-darwin-universal')
170
170
  const bindingPackageVersion = require('@takumi-rs/core-darwin-universal/package.json').version
171
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
172
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
171
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
172
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
173
173
  }
174
174
  return binding
175
175
  } catch (e) {
@@ -184,8 +184,8 @@ function requireNative() {
184
184
  try {
185
185
  const binding = require('@takumi-rs/core-darwin-x64')
186
186
  const bindingPackageVersion = require('@takumi-rs/core-darwin-x64/package.json').version
187
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
188
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
187
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
188
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
189
  }
190
190
  return binding
191
191
  } catch (e) {
@@ -200,8 +200,8 @@ function requireNative() {
200
200
  try {
201
201
  const binding = require('@takumi-rs/core-darwin-arm64')
202
202
  const bindingPackageVersion = require('@takumi-rs/core-darwin-arm64/package.json').version
203
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
204
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
203
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
204
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
205
  }
206
206
  return binding
207
207
  } catch (e) {
@@ -220,8 +220,8 @@ function requireNative() {
220
220
  try {
221
221
  const binding = require('@takumi-rs/core-freebsd-x64')
222
222
  const bindingPackageVersion = require('@takumi-rs/core-freebsd-x64/package.json').version
223
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
224
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
223
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
224
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
225
225
  }
226
226
  return binding
227
227
  } catch (e) {
@@ -236,8 +236,8 @@ function requireNative() {
236
236
  try {
237
237
  const binding = require('@takumi-rs/core-freebsd-arm64')
238
238
  const bindingPackageVersion = require('@takumi-rs/core-freebsd-arm64/package.json').version
239
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
240
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
239
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
240
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
241
  }
242
242
  return binding
243
243
  } catch (e) {
@@ -257,8 +257,8 @@ function requireNative() {
257
257
  try {
258
258
  const binding = require('@takumi-rs/core-linux-x64-musl')
259
259
  const bindingPackageVersion = require('@takumi-rs/core-linux-x64-musl/package.json').version
260
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
261
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
260
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
261
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
262
262
  }
263
263
  return binding
264
264
  } catch (e) {
@@ -273,8 +273,8 @@ function requireNative() {
273
273
  try {
274
274
  const binding = require('@takumi-rs/core-linux-x64-gnu')
275
275
  const bindingPackageVersion = require('@takumi-rs/core-linux-x64-gnu/package.json').version
276
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
277
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
276
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
277
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
278
  }
279
279
  return binding
280
280
  } catch (e) {
@@ -291,8 +291,8 @@ function requireNative() {
291
291
  try {
292
292
  const binding = require('@takumi-rs/core-linux-arm64-musl')
293
293
  const bindingPackageVersion = require('@takumi-rs/core-linux-arm64-musl/package.json').version
294
- if (bindingPackageVersion !== '0.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
296
296
  }
297
297
  return binding
298
298
  } catch (e) {
@@ -307,8 +307,8 @@ function requireNative() {
307
307
  try {
308
308
  const binding = require('@takumi-rs/core-linux-arm64-gnu')
309
309
  const bindingPackageVersion = require('@takumi-rs/core-linux-arm64-gnu/package.json').version
310
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
311
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
310
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
311
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
312
  }
313
313
  return binding
314
314
  } catch (e) {
@@ -325,8 +325,8 @@ function requireNative() {
325
325
  try {
326
326
  const binding = require('@takumi-rs/core-linux-arm-musleabihf')
327
327
  const bindingPackageVersion = require('@takumi-rs/core-linux-arm-musleabihf/package.json').version
328
- if (bindingPackageVersion !== '0.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
330
330
  }
331
331
  return binding
332
332
  } catch (e) {
@@ -341,8 +341,8 @@ function requireNative() {
341
341
  try {
342
342
  const binding = require('@takumi-rs/core-linux-arm-gnueabihf')
343
343
  const bindingPackageVersion = require('@takumi-rs/core-linux-arm-gnueabihf/package.json').version
344
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
345
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
344
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
345
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
346
  }
347
347
  return binding
348
348
  } catch (e) {
@@ -359,8 +359,8 @@ function requireNative() {
359
359
  try {
360
360
  const binding = require('@takumi-rs/core-linux-loong64-musl')
361
361
  const bindingPackageVersion = require('@takumi-rs/core-linux-loong64-musl/package.json').version
362
- if (bindingPackageVersion !== '0.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
364
364
  }
365
365
  return binding
366
366
  } catch (e) {
@@ -375,8 +375,8 @@ function requireNative() {
375
375
  try {
376
376
  const binding = require('@takumi-rs/core-linux-loong64-gnu')
377
377
  const bindingPackageVersion = require('@takumi-rs/core-linux-loong64-gnu/package.json').version
378
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
379
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
378
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
379
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
380
  }
381
381
  return binding
382
382
  } catch (e) {
@@ -393,8 +393,8 @@ function requireNative() {
393
393
  try {
394
394
  const binding = require('@takumi-rs/core-linux-riscv64-musl')
395
395
  const bindingPackageVersion = require('@takumi-rs/core-linux-riscv64-musl/package.json').version
396
- if (bindingPackageVersion !== '0.32.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 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.33.0' && 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.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
398
398
  }
399
399
  return binding
400
400
  } catch (e) {
@@ -409,8 +409,8 @@ function requireNative() {
409
409
  try {
410
410
  const binding = require('@takumi-rs/core-linux-riscv64-gnu')
411
411
  const bindingPackageVersion = require('@takumi-rs/core-linux-riscv64-gnu/package.json').version
412
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
413
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
412
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
413
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
414
  }
415
415
  return binding
416
416
  } catch (e) {
@@ -426,8 +426,8 @@ function requireNative() {
426
426
  try {
427
427
  const binding = require('@takumi-rs/core-linux-ppc64-gnu')
428
428
  const bindingPackageVersion = require('@takumi-rs/core-linux-ppc64-gnu/package.json').version
429
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
430
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
429
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
430
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
431
431
  }
432
432
  return binding
433
433
  } catch (e) {
@@ -442,8 +442,8 @@ function requireNative() {
442
442
  try {
443
443
  const binding = require('@takumi-rs/core-linux-s390x-gnu')
444
444
  const bindingPackageVersion = require('@takumi-rs/core-linux-s390x-gnu/package.json').version
445
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
446
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
445
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
446
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
447
  }
448
448
  return binding
449
449
  } catch (e) {
@@ -462,8 +462,8 @@ function requireNative() {
462
462
  try {
463
463
  const binding = require('@takumi-rs/core-openharmony-arm64')
464
464
  const bindingPackageVersion = require('@takumi-rs/core-openharmony-arm64/package.json').version
465
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
466
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
465
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
466
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
467
467
  }
468
468
  return binding
469
469
  } catch (e) {
@@ -478,8 +478,8 @@ function requireNative() {
478
478
  try {
479
479
  const binding = require('@takumi-rs/core-openharmony-x64')
480
480
  const bindingPackageVersion = require('@takumi-rs/core-openharmony-x64/package.json').version
481
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
482
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
481
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
482
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
483
  }
484
484
  return binding
485
485
  } catch (e) {
@@ -494,8 +494,8 @@ function requireNative() {
494
494
  try {
495
495
  const binding = require('@takumi-rs/core-openharmony-arm')
496
496
  const bindingPackageVersion = require('@takumi-rs/core-openharmony-arm/package.json').version
497
- if (bindingPackageVersion !== '0.32.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
498
- throw new Error(`Native binding package version mismatch, expected 0.32.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
497
+ if (bindingPackageVersion !== '0.33.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
498
+ throw new Error(`Native binding package version mismatch, expected 0.33.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
499
  }
500
500
  return binding
501
501
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takumi-rs/core",
3
- "version": "0.32.2",
3
+ "version": "0.33.0",
4
4
  "author": {
5
5
  "email": "me@kane.tw",
6
6
  "name": "Kane Wang",
@@ -45,22 +45,22 @@
45
45
  "dtsHeaderFile": "./src/dts-header.d.ts"
46
46
  },
47
47
  "scripts": {
48
- "build": "napi build --release --platform --esm --strip --no-const-enum",
48
+ "build": "napi build --release --no-const-enum --platform --esm --strip",
49
49
  "build:debug": "napi build",
50
- "prepublishOnly": "bunx napi prepublish -t npm --no-gh-release",
51
- "artifacts": "napi create-npm-dirs && napi artifacts",
52
- "version": "napi version",
53
- "bench": "bun tests/bench/index.ts"
50
+ "prepublishOnly": "bun artifacts && cp artifacts/bindings-x86_64-unknown-linux-gnu/index.* . && napi prepublish -t npm --no-gh-release",
51
+ "artifacts": "napi create-npm-dirs && napi artifacts && napi version",
52
+ "bench": "bun tests/bench/index.ts",
53
+ "release": "npm publish --provenance"
54
54
  },
55
55
  "type": "module",
56
56
  "types": "index.d.ts",
57
57
  "optionalDependencies": {
58
- "@takumi-rs/core-darwin-arm64": "0.32.2",
59
- "@takumi-rs/core-linux-arm64-gnu": "0.32.2",
60
- "@takumi-rs/core-linux-arm64-musl": "0.32.2",
61
- "@takumi-rs/core-win32-arm64-msvc": "0.32.2",
62
- "@takumi-rs/core-linux-x64-gnu": "0.32.2",
63
- "@takumi-rs/core-linux-x64-musl": "0.32.2",
64
- "@takumi-rs/core-win32-x64-msvc": "0.32.2"
58
+ "@takumi-rs/core-darwin-arm64": "0.33.0",
59
+ "@takumi-rs/core-linux-arm64-gnu": "0.33.0",
60
+ "@takumi-rs/core-linux-arm64-musl": "0.33.0",
61
+ "@takumi-rs/core-win32-arm64-msvc": "0.33.0",
62
+ "@takumi-rs/core-linux-x64-gnu": "0.33.0",
63
+ "@takumi-rs/core-linux-x64-musl": "0.33.0",
64
+ "@takumi-rs/core-win32-x64-msvc": "0.33.0"
65
65
  }
66
66
  }