oxc-transform 0.134.0 → 0.136.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.
Files changed (3) hide show
  1. package/index.d.ts +138 -20
  2. package/index.js +64 -63
  3. package/package.json +25 -25
package/index.d.ts CHANGED
@@ -329,6 +329,97 @@ export interface PluginsOptions {
329
329
  taggedTemplateEscape?: boolean
330
330
  }
331
331
 
332
+ /** Dynamic gating for {@link ReactCompilerOptions#dynamicGating}. */
333
+ export interface ReactCompilerDynamicGating {
334
+ /** Module the gating import comes from. */
335
+ source: string
336
+ }
337
+
338
+ /** Static gating for {@link ReactCompilerOptions#gating}. */
339
+ export interface ReactCompilerGating {
340
+ /** Module the gating import comes from. */
341
+ source: string
342
+ /** Imported specifier used as the gate. */
343
+ importSpecifierName: string
344
+ }
345
+
346
+ /**
347
+ * Options for the experimental [React Compiler](https://github.com/react/react/tree/main/compiler).
348
+ *
349
+ * Mirrors the compiler's `PluginOptions`. The deep `environment` configuration
350
+ * (inference / validation flags) is not surfaced here.
351
+ *
352
+ * @see {@link TransformOptions#reactCompiler}
353
+ */
354
+ export interface ReactCompilerOptions {
355
+ /**
356
+ * Which functions to compile.
357
+ *
358
+ * @default 'infer'
359
+ */
360
+ compilationMode?: 'infer' | 'syntax' | 'annotation' | 'all'
361
+ /**
362
+ * What to do when a function cannot be compiled.
363
+ *
364
+ * @default 'none'
365
+ */
366
+ panicThreshold?: 'none' | 'critical_errors' | 'all_errors'
367
+ /**
368
+ * React runtime version target. `17` and `18` require the
369
+ * `react-compiler-runtime` package; `19` ships the runtime in `react`.
370
+ *
371
+ * @default '19'
372
+ */
373
+ target?: '17' | '18' | '19'
374
+ /**
375
+ * Analyze and report diagnostics only; emit no transformed code.
376
+ *
377
+ * @default false
378
+ */
379
+ noEmit?: boolean
380
+ /**
381
+ * Compiler output mode.
382
+ *
383
+ * @default undefined
384
+ */
385
+ outputMode?: 'client' | 'ssr' | 'lint'
386
+ /**
387
+ * Compile even functions marked with the `"use no memo"` / `"use no forget"`
388
+ * opt-out directives.
389
+ *
390
+ * @default false
391
+ */
392
+ ignoreUseNoForget?: boolean
393
+ /**
394
+ * Treat Flow suppression comments as opt-outs.
395
+ *
396
+ * @default true
397
+ */
398
+ flowSuppressions?: boolean
399
+ /**
400
+ * Enable `react-native-reanimated` support.
401
+ *
402
+ * @default false
403
+ */
404
+ enableReanimated?: boolean
405
+ /**
406
+ * Development mode (extra validation / instrumentation).
407
+ *
408
+ * @default false
409
+ */
410
+ isDev?: boolean
411
+ /** Source file name, used for the fast-refresh hash and in diagnostics. */
412
+ filename?: string
413
+ /** ESLint rules whose suppressions opt a function out of compilation. */
414
+ eslintSuppressionRules?: Array<string>
415
+ /** Extra directives that opt a function out of compilation. */
416
+ customOptOutDirectives?: Array<string>
417
+ /** Also emit a gated (feature-flagged) version of each compiled function. */
418
+ gating?: ReactCompilerGating
419
+ /** Dynamically-gated compilation. */
420
+ dynamicGating?: ReactCompilerDynamicGating
421
+ }
422
+
332
423
  export interface ReactRefreshOptions {
333
424
  /**
334
425
  * Specify the identifier of the refresh registration variable.
@@ -376,7 +467,10 @@ export interface StyledComponentsOptions {
376
467
  * Transpiles styled-components tagged template literals to a smaller representation
377
468
  * than what Babel normally creates, helping to reduce bundle size.
378
469
  *
379
- * @default true
470
+ * Disabled by default because Oxc does not down-level template literals, so this
471
+ * transform only increases output size.
472
+ *
473
+ * @default false
380
474
  */
381
475
  transpileTemplateLiterals?: boolean
382
476
  /**
@@ -443,6 +537,13 @@ export declare function transform(filename: string, sourceText: string, options?
443
537
  /**
444
538
  * Options for transforming a JavaScript or TypeScript file.
445
539
  *
540
+ * Options are listed in evaluation order: the source is parsed (`lang`,
541
+ * `sourceType`), declarations are emitted (`typescript.declaration`), then
542
+ * transforms run (`reactCompiler`, `typescript`, `decorator`, `plugins`,
543
+ * `jsx`, `target`), followed by the `inject` and `define` plugins, and
544
+ * finally codegen (`sourcemap`). `helpers` configures the runtime helpers
545
+ * the transforms emit.
546
+ *
446
547
  * @see {@link transform}
447
548
  */
448
549
  export interface TransformOptions {
@@ -455,23 +556,31 @@ export interface TransformOptions {
455
556
  * options.
456
557
  */
457
558
  cwd?: string
559
+ /** Set assumptions in order to produce smaller output. */
560
+ assumptions?: CompilerAssumptions
458
561
  /**
459
- * Enable source map generation.
460
- *
461
- * When `true`, the `sourceMap` field of transform result objects will be populated.
462
- *
463
- * @default false
562
+ * Enable the experimental [React Compiler](https://github.com/react/react/tree/main/compiler).
464
563
  *
465
- * @see {@link SourceMap}
564
+ * `true` enables it with default options; an object enables it with the
565
+ * given options; `false` or omitted disables it. When enabled, the compiler
566
+ * runs as the first transform and memoizes React components and hooks.
466
567
  */
467
- sourcemap?: boolean
468
- /** Set assumptions in order to produce smaller output. */
469
- assumptions?: CompilerAssumptions
568
+ reactCompiler?: boolean | ReactCompilerOptions
470
569
  /**
471
570
  * Configure how TypeScript is transformed.
571
+ *
572
+ * `typescript.declaration` is evaluated before all transforms.
573
+ *
472
574
  * @see {@link https://oxc.rs/docs/guide/usage/transformer/typescript}
473
575
  */
474
576
  typescript?: TypeScriptOptions
577
+ /** Decorator plugin */
578
+ decorator?: DecoratorOptions
579
+ /**
580
+ * Third-party plugins to use.
581
+ * @see {@link https://oxc.rs/docs/guide/usage/transformer/plugins}
582
+ */
583
+ plugins?: PluginsOptions
475
584
  /**
476
585
  * Configure how TSX and JSX are transformed.
477
586
  * @see {@link https://oxc.rs/docs/guide/usage/transformer/jsx}
@@ -494,23 +603,32 @@ export interface TransformOptions {
494
603
  target?: string | Array<string>
495
604
  /** Behaviour for runtime helpers. */
496
605
  helpers?: Helpers
497
- /**
498
- * Define Plugin
499
- * @see {@link https://oxc.rs/docs/guide/usage/transformer/global-variable-replacement#define}
500
- */
501
- define?: Record<string, string>
502
606
  /**
503
607
  * Inject Plugin
608
+ *
609
+ * Runs after all transforms.
610
+ *
504
611
  * @see {@link https://oxc.rs/docs/guide/usage/transformer/global-variable-replacement#inject}
505
612
  */
506
613
  inject?: Record<string, string | [string, string]>
507
- /** Decorator plugin */
508
- decorator?: DecoratorOptions
509
614
  /**
510
- * Third-party plugins to use.
511
- * @see {@link https://oxc.rs/docs/guide/usage/transformer/plugins}
615
+ * Define Plugin
616
+ *
617
+ * Runs after the inject plugin.
618
+ *
619
+ * @see {@link https://oxc.rs/docs/guide/usage/transformer/global-variable-replacement#define}
512
620
  */
513
- plugins?: PluginsOptions
621
+ define?: Record<string, string>
622
+ /**
623
+ * Enable source map generation.
624
+ *
625
+ * When `true`, the `sourceMap` field of transform result objects will be populated.
626
+ *
627
+ * @default false
628
+ *
629
+ * @see {@link SourceMap}
630
+ */
631
+ sourcemap?: boolean
514
632
  }
515
633
 
516
634
  export interface TransformResult {
package/index.js CHANGED
@@ -3,11 +3,11 @@
3
3
  // @ts-nocheck
4
4
  /* auto-generated by NAPI-RS */
5
5
 
6
- import { createRequire } from 'node:module'
6
+ import { createRequire } from 'module'
7
7
  const require = createRequire(import.meta.url)
8
8
  const __dirname = new URL('.', import.meta.url).pathname
9
9
 
10
- const { readFileSync } = require('node:fs')
10
+ const { readFileSync } = require('fs')
11
11
  let nativeBinding = null
12
12
  const loadErrors = []
13
13
 
@@ -37,7 +37,7 @@ const isMuslFromFilesystem = () => {
37
37
 
38
38
  const isMuslFromReport = () => {
39
39
  let report = null
40
- if (typeof process.report?.getReport === 'function') {
40
+ if (process.report && typeof process.report.getReport === 'function') {
41
41
  process.report.excludeNetwork = true
42
42
  report = process.report.getReport()
43
43
  }
@@ -81,8 +81,8 @@ function requireNative() {
81
81
  try {
82
82
  const binding = require('@oxc-transform/binding-android-arm64')
83
83
  const bindingPackageVersion = require('@oxc-transform/binding-android-arm64/package.json').version
84
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.136.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.136.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('@oxc-transform/binding-android-arm-eabi')
99
99
  const bindingPackageVersion = require('@oxc-transform/binding-android-arm-eabi/package.json').version
100
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.136.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.136.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
102
102
  }
103
103
  return binding
104
104
  } catch (e) {
@@ -109,7 +109,7 @@ function requireNative() {
109
109
  }
110
110
  } else if (process.platform === 'win32') {
111
111
  if (process.arch === 'x64') {
112
- if (process.config?.variables?.shlib_suffix === 'dll.a' || process.config?.variables?.node_target_type === 'shared_library') {
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
113
  try {
114
114
  return require('./transform.win32-x64-gnu.node')
115
115
  } catch (e) {
@@ -118,8 +118,8 @@ function requireNative() {
118
118
  try {
119
119
  const binding = require('@oxc-transform/binding-win32-x64-gnu')
120
120
  const bindingPackageVersion = require('@oxc-transform/binding-win32-x64-gnu/package.json').version
121
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-win32-x64-msvc')
136
136
  const bindingPackageVersion = require('@oxc-transform/binding-win32-x64-msvc/package.json').version
137
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-win32-ia32-msvc')
153
153
  const bindingPackageVersion = require('@oxc-transform/binding-win32-ia32-msvc/package.json').version
154
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-win32-arm64-msvc')
169
169
  const bindingPackageVersion = require('@oxc-transform/binding-win32-arm64-msvc/package.json').version
170
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-darwin-universal')
188
188
  const bindingPackageVersion = require('@oxc-transform/binding-darwin-universal/package.json').version
189
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-darwin-x64')
204
204
  const bindingPackageVersion = require('@oxc-transform/binding-darwin-x64/package.json').version
205
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-darwin-arm64')
220
220
  const bindingPackageVersion = require('@oxc-transform/binding-darwin-arm64/package.json').version
221
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-freebsd-x64')
240
240
  const bindingPackageVersion = require('@oxc-transform/binding-freebsd-x64/package.json').version
241
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-freebsd-arm64')
256
256
  const bindingPackageVersion = require('@oxc-transform/binding-freebsd-arm64/package.json').version
257
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-x64-musl')
277
277
  const bindingPackageVersion = require('@oxc-transform/binding-linux-x64-musl/package.json').version
278
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-x64-gnu')
293
293
  const bindingPackageVersion = require('@oxc-transform/binding-linux-x64-gnu/package.json').version
294
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.136.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.136.0 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('@oxc-transform/binding-linux-arm64-musl')
311
311
  const bindingPackageVersion = require('@oxc-transform/binding-linux-arm64-musl/package.json').version
312
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-arm64-gnu')
327
327
  const bindingPackageVersion = require('@oxc-transform/binding-linux-arm64-gnu/package.json').version
328
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.136.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.136.0 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('@oxc-transform/binding-linux-arm-musleabihf')
345
345
  const bindingPackageVersion = require('@oxc-transform/binding-linux-arm-musleabihf/package.json').version
346
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-arm-gnueabihf')
361
361
  const bindingPackageVersion = require('@oxc-transform/binding-linux-arm-gnueabihf/package.json').version
362
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.136.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.136.0 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('@oxc-transform/binding-linux-loong64-musl')
379
379
  const bindingPackageVersion = require('@oxc-transform/binding-linux-loong64-musl/package.json').version
380
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-loong64-gnu')
395
395
  const bindingPackageVersion = require('@oxc-transform/binding-linux-loong64-gnu/package.json').version
396
- if (bindingPackageVersion !== '0.134.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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.136.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.136.0 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('@oxc-transform/binding-linux-riscv64-musl')
413
413
  const bindingPackageVersion = require('@oxc-transform/binding-linux-riscv64-musl/package.json').version
414
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-riscv64-gnu')
429
429
  const bindingPackageVersion = require('@oxc-transform/binding-linux-riscv64-gnu/package.json').version
430
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-ppc64-gnu')
446
446
  const bindingPackageVersion = require('@oxc-transform/binding-linux-ppc64-gnu/package.json').version
447
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-linux-s390x-gnu')
462
462
  const bindingPackageVersion = require('@oxc-transform/binding-linux-s390x-gnu/package.json').version
463
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-openharmony-arm64')
482
482
  const bindingPackageVersion = require('@oxc-transform/binding-openharmony-arm64/package.json').version
483
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-openharmony-x64')
498
498
  const bindingPackageVersion = require('@oxc-transform/binding-openharmony-x64/package.json').version
499
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 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('@oxc-transform/binding-openharmony-arm')
514
514
  const bindingPackageVersion = require('@oxc-transform/binding-openharmony-arm/package.json').version
515
- if (bindingPackageVersion !== '0.134.0' && 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.134.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '0.136.0' && 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.136.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -582,17 +582,18 @@ if (!nativeBinding && globalThis.process?.versions?.["webcontainer"]) {
582
582
 
583
583
  if (!nativeBinding) {
584
584
  if (loadErrors.length > 0) {
585
- throw new Error(
585
+ const error = new Error(
586
586
  `Cannot find native binding. ` +
587
587
  `npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
588
588
  'Please try `npm i` again after removing both package-lock.json and node_modules directory.',
589
- {
590
- cause: loadErrors.reduce((err, cur) => {
591
- cur.cause = err
592
- return cur
593
- }),
594
- },
595
589
  )
590
+ // assign instead of the `new Error(message, { cause })` options form,
591
+ // which Node < 16.9 silently ignores
592
+ error.cause = loadErrors.reduce((err, cur) => {
593
+ cur.cause = err
594
+ return cur
595
+ })
596
+ throw error
596
597
  }
597
598
  throw new Error(`Failed to load native binding`)
598
599
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxc-transform",
3
- "version": "0.134.0",
3
+ "version": "0.136.0",
4
4
  "description": "Oxc Transformer Node API",
5
5
  "keywords": [
6
6
  "babel",
@@ -38,12 +38,12 @@
38
38
  "registry": "https://registry.npmjs.org/"
39
39
  },
40
40
  "devDependencies": {
41
- "@emnapi/core": "1.10.0",
42
- "@emnapi/runtime": "1.10.0",
43
- "@napi-rs/cli": "3.7.0",
41
+ "@emnapi/core": "1.11.1",
42
+ "@emnapi/runtime": "1.11.1",
43
+ "@napi-rs/cli": "3.7.2",
44
44
  "@types/node": "24.1.0",
45
45
  "publint": "0.3.21",
46
- "vitest": "4.1.7"
46
+ "vitest": "4.1.8"
47
47
  },
48
48
  "napi": {
49
49
  "binaryName": "transform",
@@ -80,26 +80,26 @@
80
80
  "node": "^20.19.0 || >=22.12.0"
81
81
  },
82
82
  "optionalDependencies": {
83
- "@oxc-transform/binding-darwin-arm64": "0.134.0",
84
- "@oxc-transform/binding-android-arm64": "0.134.0",
85
- "@oxc-transform/binding-win32-arm64-msvc": "0.134.0",
86
- "@oxc-transform/binding-linux-arm64-gnu": "0.134.0",
87
- "@oxc-transform/binding-linux-arm64-musl": "0.134.0",
88
- "@oxc-transform/binding-openharmony-arm64": "0.134.0",
89
- "@oxc-transform/binding-android-arm-eabi": "0.134.0",
90
- "@oxc-transform/binding-linux-arm-gnueabihf": "0.134.0",
91
- "@oxc-transform/binding-linux-arm-musleabihf": "0.134.0",
92
- "@oxc-transform/binding-win32-ia32-msvc": "0.134.0",
93
- "@oxc-transform/binding-linux-ppc64-gnu": "0.134.0",
94
- "@oxc-transform/binding-linux-riscv64-gnu": "0.134.0",
95
- "@oxc-transform/binding-linux-riscv64-musl": "0.134.0",
96
- "@oxc-transform/binding-linux-s390x-gnu": "0.134.0",
97
- "@oxc-transform/binding-wasm32-wasi": "0.134.0",
98
- "@oxc-transform/binding-darwin-x64": "0.134.0",
99
- "@oxc-transform/binding-win32-x64-msvc": "0.134.0",
100
- "@oxc-transform/binding-freebsd-x64": "0.134.0",
101
- "@oxc-transform/binding-linux-x64-gnu": "0.134.0",
102
- "@oxc-transform/binding-linux-x64-musl": "0.134.0"
83
+ "@oxc-transform/binding-darwin-arm64": "0.136.0",
84
+ "@oxc-transform/binding-android-arm64": "0.136.0",
85
+ "@oxc-transform/binding-win32-arm64-msvc": "0.136.0",
86
+ "@oxc-transform/binding-linux-arm64-gnu": "0.136.0",
87
+ "@oxc-transform/binding-linux-arm64-musl": "0.136.0",
88
+ "@oxc-transform/binding-openharmony-arm64": "0.136.0",
89
+ "@oxc-transform/binding-android-arm-eabi": "0.136.0",
90
+ "@oxc-transform/binding-linux-arm-gnueabihf": "0.136.0",
91
+ "@oxc-transform/binding-linux-arm-musleabihf": "0.136.0",
92
+ "@oxc-transform/binding-win32-ia32-msvc": "0.136.0",
93
+ "@oxc-transform/binding-linux-ppc64-gnu": "0.136.0",
94
+ "@oxc-transform/binding-linux-riscv64-gnu": "0.136.0",
95
+ "@oxc-transform/binding-linux-riscv64-musl": "0.136.0",
96
+ "@oxc-transform/binding-linux-s390x-gnu": "0.136.0",
97
+ "@oxc-transform/binding-wasm32-wasi": "0.136.0",
98
+ "@oxc-transform/binding-darwin-x64": "0.136.0",
99
+ "@oxc-transform/binding-win32-x64-msvc": "0.136.0",
100
+ "@oxc-transform/binding-freebsd-x64": "0.136.0",
101
+ "@oxc-transform/binding-linux-x64-gnu": "0.136.0",
102
+ "@oxc-transform/binding-linux-x64-musl": "0.136.0"
103
103
  },
104
104
  "scripts": {
105
105
  "build-dev": "napi build --esm --platform",