oxc-transform 0.96.0 → 0.98.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/README.md +35 -10
- package/index.d.ts +32 -19
- package/index.js +56 -54
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ This is alpha software and may yield incorrect results, feel free to [submit a b
|
|
|
6
6
|
|
|
7
7
|
```javascript
|
|
8
8
|
import assert from 'assert';
|
|
9
|
-
import {
|
|
9
|
+
import { transformSync } from 'oxc-transform';
|
|
10
10
|
|
|
11
|
-
const { code, declaration, errors } =
|
|
11
|
+
const { code, declaration, errors } = transformSync(
|
|
12
12
|
'test.ts',
|
|
13
13
|
'class A<T> {}',
|
|
14
14
|
{
|
|
@@ -17,7 +17,7 @@ const { code, declaration, errors } = transform(
|
|
|
17
17
|
},
|
|
18
18
|
},
|
|
19
19
|
);
|
|
20
|
-
// or `await
|
|
20
|
+
// or `await transform(filename, code, options)`
|
|
21
21
|
|
|
22
22
|
assert.equal(code, 'class A {}\n');
|
|
23
23
|
assert.equal(declaration, 'declare class A<T> {}\n');
|
|
@@ -32,9 +32,10 @@ Conforms to TypeScript compiler's `--isolatedDeclarations` `.d.ts` emit.
|
|
|
32
32
|
|
|
33
33
|
```javascript
|
|
34
34
|
import assert from 'assert';
|
|
35
|
-
import {
|
|
35
|
+
import { isolatedDeclarationSync } from 'oxc-transform';
|
|
36
36
|
|
|
37
|
-
const { map, code, errors } =
|
|
37
|
+
const { map, code, errors } = isolatedDeclarationSync('test.ts', 'class A {}');
|
|
38
|
+
// or `await isolatedDeclaration(filename, code, options)`
|
|
38
39
|
|
|
39
40
|
assert.equal(code, 'declare class A {}\n');
|
|
40
41
|
assert(errors.length == 0);
|
|
@@ -42,22 +43,46 @@ assert(errors.length == 0);
|
|
|
42
43
|
|
|
43
44
|
### API
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
#### Transform Functions
|
|
46
47
|
|
|
47
48
|
```typescript
|
|
48
|
-
|
|
49
|
+
// Synchronous transform
|
|
50
|
+
transformSync(
|
|
49
51
|
filename: string,
|
|
50
52
|
sourceText: string,
|
|
51
53
|
options?: TransformOptions,
|
|
52
|
-
): TransformResult
|
|
54
|
+
): TransformResult
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
// Asynchronous transform
|
|
57
|
+
transform(
|
|
58
|
+
filename: string,
|
|
59
|
+
sourceText: string,
|
|
60
|
+
options?: TransformOptions,
|
|
61
|
+
): Promise<TransformResult>
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
#### Isolated Declaration Functions
|
|
65
|
+
|
|
66
|
+
```typescript
|
|
67
|
+
// Synchronous isolated declaration
|
|
68
|
+
isolatedDeclarationSync(
|
|
55
69
|
filename: string,
|
|
56
70
|
sourceText: string,
|
|
57
71
|
options?: IsolatedDeclarationsOptions,
|
|
58
|
-
): IsolatedDeclarationsResult
|
|
72
|
+
): IsolatedDeclarationsResult
|
|
73
|
+
|
|
74
|
+
// Asynchronous isolated declaration
|
|
75
|
+
isolatedDeclaration(
|
|
76
|
+
filename: string,
|
|
77
|
+
sourceText: string,
|
|
78
|
+
options?: IsolatedDeclarationsOptions,
|
|
79
|
+
): Promise<IsolatedDeclarationsResult>
|
|
59
80
|
```
|
|
60
81
|
|
|
82
|
+
Use the `Sync` versions for synchronous operations. Use async versions for asynchronous operations, which can be beneficial in I/O-bound or concurrent scenarios, though they add async overhead.
|
|
83
|
+
|
|
84
|
+
See `index.d.ts` for complete type definitions.
|
|
85
|
+
|
|
61
86
|
### Supports WASM
|
|
62
87
|
|
|
63
88
|
See https://stackblitz.com/edit/oxc-transform for usage example.
|
package/index.d.ts
CHANGED
|
@@ -153,8 +153,12 @@ export interface Helpers {
|
|
|
153
153
|
mode?: HelperMode
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
-
/**
|
|
157
|
-
|
|
156
|
+
/**
|
|
157
|
+
* TypeScript Isolated Declarations for Standalone DTS Emit (async)
|
|
158
|
+
*
|
|
159
|
+
* Note: This function can be slower than `isolatedDeclarationSync` due to the overhead of spawning a thread.
|
|
160
|
+
*/
|
|
161
|
+
export declare function isolatedDeclaration(filename: string, sourceText: string, options?: IsolatedDeclarationsOptions | undefined | null): Promise<IsolatedDeclarationsResult>
|
|
158
162
|
|
|
159
163
|
export interface IsolatedDeclarationsOptions {
|
|
160
164
|
/**
|
|
@@ -175,6 +179,9 @@ export interface IsolatedDeclarationsResult {
|
|
|
175
179
|
errors: Array<OxcError>
|
|
176
180
|
}
|
|
177
181
|
|
|
182
|
+
/** TypeScript Isolated Declarations for Standalone DTS Emit */
|
|
183
|
+
export declare function isolatedDeclarationSync(filename: string, sourceText: string, options?: IsolatedDeclarationsOptions | undefined | null): IsolatedDeclarationsResult
|
|
184
|
+
|
|
178
185
|
/**
|
|
179
186
|
* Configure how TSX and JSX are transformed.
|
|
180
187
|
*
|
|
@@ -211,7 +218,7 @@ export interface JsxOptions {
|
|
|
211
218
|
/**
|
|
212
219
|
* Enables `@babel/plugin-transform-react-pure-annotations`.
|
|
213
220
|
*
|
|
214
|
-
* It will mark top-level React method calls as pure for tree shaking.
|
|
221
|
+
* It will mark JSX elements and top-level React method calls as pure for tree shaking.
|
|
215
222
|
*
|
|
216
223
|
* @see {@link https://babeljs.io/docs/en/babel-plugin-transform-react-pure-annotations}
|
|
217
224
|
*
|
|
@@ -281,9 +288,11 @@ export interface JsxOptions {
|
|
|
281
288
|
* @returns an object containing the transformed code, source maps, and any
|
|
282
289
|
* errors that occurred during parsing or transformation.
|
|
283
290
|
*
|
|
291
|
+
* Note: This function can be slower than `moduleRunnerTransformSync` due to the overhead of spawning a thread.
|
|
292
|
+
*
|
|
284
293
|
* @deprecated Only works for Vite.
|
|
285
294
|
*/
|
|
286
|
-
export declare function moduleRunnerTransform(filename: string, sourceText: string, options?: ModuleRunnerTransformOptions | undefined | null): ModuleRunnerTransformResult
|
|
295
|
+
export declare function moduleRunnerTransform(filename: string, sourceText: string, options?: ModuleRunnerTransformOptions | undefined | null): Promise<ModuleRunnerTransformResult>
|
|
287
296
|
|
|
288
297
|
export interface ModuleRunnerTransformOptions {
|
|
289
298
|
/**
|
|
@@ -323,8 +332,12 @@ export interface ModuleRunnerTransformResult {
|
|
|
323
332
|
errors: Array<OxcError>
|
|
324
333
|
}
|
|
325
334
|
|
|
335
|
+
/** @deprecated Only works for Vite. */
|
|
336
|
+
export declare function moduleRunnerTransformSync(filename: string, sourceText: string, options?: ModuleRunnerTransformOptions | undefined | null): ModuleRunnerTransformResult
|
|
337
|
+
|
|
326
338
|
export interface PluginsOptions {
|
|
327
339
|
styledComponents?: StyledComponentsOptions
|
|
340
|
+
taggedTemplateEscape?: boolean
|
|
328
341
|
}
|
|
329
342
|
|
|
330
343
|
export interface ReactRefreshOptions {
|
|
@@ -422,20 +435,6 @@ export interface StyledComponentsOptions {
|
|
|
422
435
|
topLevelImportPaths?: Array<string>
|
|
423
436
|
}
|
|
424
437
|
|
|
425
|
-
/**
|
|
426
|
-
* Transpile a JavaScript or TypeScript into a target ECMAScript version.
|
|
427
|
-
*
|
|
428
|
-
* @param filename The name of the file being transformed. If this is a
|
|
429
|
-
* relative path, consider setting the {@link TransformOptions#cwd} option..
|
|
430
|
-
* @param sourceText the source code itself
|
|
431
|
-
* @param options The options for the transformation. See {@link
|
|
432
|
-
* TransformOptions} for more information.
|
|
433
|
-
*
|
|
434
|
-
* @returns an object containing the transformed code, source maps, and any
|
|
435
|
-
* errors that occurred during parsing or transformation.
|
|
436
|
-
*/
|
|
437
|
-
export declare function transform(filename: string, sourceText: string, options?: TransformOptions | undefined | null): TransformResult
|
|
438
|
-
|
|
439
438
|
/**
|
|
440
439
|
* Transpile a JavaScript or TypeScript into a target ECMAScript version, asynchronously.
|
|
441
440
|
*
|
|
@@ -450,7 +449,7 @@ export declare function transform(filename: string, sourceText: string, options?
|
|
|
450
449
|
* @returns a promise that resolves to an object containing the transformed code,
|
|
451
450
|
* source maps, and any errors that occurred during parsing or transformation.
|
|
452
451
|
*/
|
|
453
|
-
export declare function
|
|
452
|
+
export declare function transform(filename: string, sourceText: string, options?: TransformOptions | undefined | null): Promise<TransformResult>
|
|
454
453
|
|
|
455
454
|
/**
|
|
456
455
|
* Options for transforming a JavaScript or TypeScript file.
|
|
@@ -562,6 +561,20 @@ export interface TransformResult {
|
|
|
562
561
|
errors: Array<OxcError>
|
|
563
562
|
}
|
|
564
563
|
|
|
564
|
+
/**
|
|
565
|
+
* Transpile a JavaScript or TypeScript into a target ECMAScript version.
|
|
566
|
+
*
|
|
567
|
+
* @param filename The name of the file being transformed. If this is a
|
|
568
|
+
* relative path, consider setting the {@link TransformOptions#cwd} option..
|
|
569
|
+
* @param sourceText the source code itself
|
|
570
|
+
* @param options The options for the transformation. See {@link
|
|
571
|
+
* TransformOptions} for more information.
|
|
572
|
+
*
|
|
573
|
+
* @returns an object containing the transformed code, source maps, and any
|
|
574
|
+
* errors that occurred during parsing or transformation.
|
|
575
|
+
*/
|
|
576
|
+
export declare function transformSync(filename: string, sourceText: string, options?: TransformOptions | undefined | null): TransformResult
|
|
577
|
+
|
|
565
578
|
export interface TypeScriptOptions {
|
|
566
579
|
jsxPragma?: string
|
|
567
580
|
jsxPragmaFrag?: string
|
package/index.js
CHANGED
|
@@ -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.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
84
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
100
|
+
if (bindingPackageVersion !== '0.98.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.98.0 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('@oxc-transform/binding-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@oxc-transform/binding-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
121
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
137
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
154
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
170
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
189
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
205
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
221
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
241
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
257
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
278
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
294
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
312
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
328
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
346
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
362
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
380
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
396
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
414
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
430
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
447
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
463
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
483
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
499
|
+
if (bindingPackageVersion !== '0.98.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.98.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.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
515
|
+
if (bindingPackageVersion !== '0.98.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.98.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
|
@@ -583,10 +583,12 @@ if (!nativeBinding) {
|
|
|
583
583
|
throw new Error(`Failed to load native binding`)
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
-
const { Severity, HelperMode, isolatedDeclaration, moduleRunnerTransform, transform,
|
|
586
|
+
const { Severity, HelperMode, isolatedDeclaration, isolatedDeclarationSync, moduleRunnerTransform, moduleRunnerTransformSync, transform, transformSync } = nativeBinding
|
|
587
587
|
export { Severity }
|
|
588
588
|
export { HelperMode }
|
|
589
589
|
export { isolatedDeclaration }
|
|
590
|
+
export { isolatedDeclarationSync }
|
|
590
591
|
export { moduleRunnerTransform }
|
|
592
|
+
export { moduleRunnerTransformSync }
|
|
591
593
|
export { transform }
|
|
592
|
-
export {
|
|
594
|
+
export { transformSync }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxc-transform",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.98.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"browser": "browser.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "^24.0.0",
|
|
39
39
|
"typescript": "5.9.3",
|
|
40
|
-
"vitest": "4.0.
|
|
40
|
+
"vitest": "4.0.6"
|
|
41
41
|
},
|
|
42
42
|
"napi": {
|
|
43
43
|
"binaryName": "transform",
|
|
@@ -66,21 +66,21 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"optionalDependencies": {
|
|
69
|
-
"@oxc-transform/binding-win32-x64-msvc": "0.
|
|
70
|
-
"@oxc-transform/binding-win32-arm64-msvc": "0.
|
|
71
|
-
"@oxc-transform/binding-linux-x64-gnu": "0.
|
|
72
|
-
"@oxc-transform/binding-linux-x64-musl": "0.
|
|
73
|
-
"@oxc-transform/binding-freebsd-x64": "0.
|
|
74
|
-
"@oxc-transform/binding-linux-arm64-gnu": "0.
|
|
75
|
-
"@oxc-transform/binding-linux-arm64-musl": "0.
|
|
76
|
-
"@oxc-transform/binding-linux-arm-gnueabihf": "0.
|
|
77
|
-
"@oxc-transform/binding-linux-arm-musleabihf": "0.
|
|
78
|
-
"@oxc-transform/binding-linux-s390x-gnu": "0.
|
|
79
|
-
"@oxc-transform/binding-linux-riscv64-gnu": "0.
|
|
80
|
-
"@oxc-transform/binding-darwin-x64": "0.
|
|
81
|
-
"@oxc-transform/binding-darwin-arm64": "0.
|
|
82
|
-
"@oxc-transform/binding-android-arm64": "0.
|
|
83
|
-
"@oxc-transform/binding-wasm32-wasi": "0.
|
|
69
|
+
"@oxc-transform/binding-win32-x64-msvc": "0.98.0",
|
|
70
|
+
"@oxc-transform/binding-win32-arm64-msvc": "0.98.0",
|
|
71
|
+
"@oxc-transform/binding-linux-x64-gnu": "0.98.0",
|
|
72
|
+
"@oxc-transform/binding-linux-x64-musl": "0.98.0",
|
|
73
|
+
"@oxc-transform/binding-freebsd-x64": "0.98.0",
|
|
74
|
+
"@oxc-transform/binding-linux-arm64-gnu": "0.98.0",
|
|
75
|
+
"@oxc-transform/binding-linux-arm64-musl": "0.98.0",
|
|
76
|
+
"@oxc-transform/binding-linux-arm-gnueabihf": "0.98.0",
|
|
77
|
+
"@oxc-transform/binding-linux-arm-musleabihf": "0.98.0",
|
|
78
|
+
"@oxc-transform/binding-linux-s390x-gnu": "0.98.0",
|
|
79
|
+
"@oxc-transform/binding-linux-riscv64-gnu": "0.98.0",
|
|
80
|
+
"@oxc-transform/binding-darwin-x64": "0.98.0",
|
|
81
|
+
"@oxc-transform/binding-darwin-arm64": "0.98.0",
|
|
82
|
+
"@oxc-transform/binding-android-arm64": "0.98.0",
|
|
83
|
+
"@oxc-transform/binding-wasm32-wasi": "0.98.0"
|
|
84
84
|
},
|
|
85
85
|
"scripts": {
|
|
86
86
|
"build-dev": "napi build --esm --platform",
|