@tsrx/oxc 0.7.0 → 0.9.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 +1 -2
- package/dist/parser.js +3 -3
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -24,8 +24,7 @@ and `@for` for showing something only sometimes, or once per item in a list.
|
|
|
24
24
|
[OXC](https://oxc.rs) is a set of fast tools for JavaScript and TypeScript,
|
|
25
25
|
written in Rust. This package teaches them to read `.tsrx` too.
|
|
26
26
|
|
|
27
|
-
_OXC for TSRX is the official OXC integration maintained by the TSRX project.
|
|
28
|
-
is not affiliated with, endorsed by, or a product of VoidZero or the OXC team._
|
|
27
|
+
_OXC for TSRX is the official OXC integration maintained by the TSRX project._
|
|
29
28
|
|
|
30
29
|
[**Docs**](https://compiled.run/oxc-tsrx) · [**Getting started**](https://compiled.run/oxc-tsrx/guide/getting-started) · [**Playground**](https://compiled.run/oxc-tsrx/playground)
|
|
31
30
|
|
package/dist/parser.js
CHANGED
|
@@ -3,7 +3,7 @@ import { isTsrxBinaryProgram, parseTrustedTsrxProgram, parseTsrxProgram } from "
|
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
4
|
//#region src/parser.ts
|
|
5
5
|
const require = createRequire(import.meta.url);
|
|
6
|
-
const PACKAGE_VERSION = "0.
|
|
6
|
+
const PACKAGE_VERSION = "0.9.0";
|
|
7
7
|
const parserManifest = Object.freeze({
|
|
8
8
|
name: "@tsrx/oxc",
|
|
9
9
|
version: PACKAGE_VERSION,
|
|
@@ -107,7 +107,7 @@ const capabilities = Object.freeze({
|
|
|
107
107
|
oxcRevision: OXC_REVISION,
|
|
108
108
|
lazy: true,
|
|
109
109
|
async: true,
|
|
110
|
-
editorRecovery:
|
|
110
|
+
editorRecovery: true,
|
|
111
111
|
cssMaterialization: false,
|
|
112
112
|
rawTransfer: false
|
|
113
113
|
});
|
|
@@ -239,7 +239,7 @@ function expectedCapabilities() {
|
|
|
239
239
|
return {
|
|
240
240
|
lazy: true,
|
|
241
241
|
async: true,
|
|
242
|
-
editorRecovery:
|
|
242
|
+
editorRecovery: true,
|
|
243
243
|
cssMaterialization: false,
|
|
244
244
|
rawTransfer: false
|
|
245
245
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsrx/oxc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "The official OXC integration for TSRX — Rust-native Oxlint and Oxfmt for .tsrx, JavaScript, TypeScript, and JSX",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"formatter",
|
|
@@ -128,14 +128,14 @@
|
|
|
128
128
|
"tinyglobby": "0.2.17"
|
|
129
129
|
},
|
|
130
130
|
"optionalDependencies": {
|
|
131
|
-
"@tsrx/oxc-darwin-arm64": "0.
|
|
132
|
-
"@tsrx/oxc-darwin-x64": "0.
|
|
133
|
-
"@tsrx/oxc-linux-arm64-gnu": "0.
|
|
134
|
-
"@tsrx/oxc-linux-arm64-musl": "0.
|
|
135
|
-
"@tsrx/oxc-linux-x64-gnu": "0.
|
|
136
|
-
"@tsrx/oxc-linux-x64-musl": "0.
|
|
137
|
-
"@tsrx/oxc-win32-arm64-msvc": "0.
|
|
138
|
-
"@tsrx/oxc-win32-x64-msvc": "0.
|
|
131
|
+
"@tsrx/oxc-darwin-arm64": "0.9.0",
|
|
132
|
+
"@tsrx/oxc-darwin-x64": "0.9.0",
|
|
133
|
+
"@tsrx/oxc-linux-arm64-gnu": "0.9.0",
|
|
134
|
+
"@tsrx/oxc-linux-arm64-musl": "0.9.0",
|
|
135
|
+
"@tsrx/oxc-linux-x64-gnu": "0.9.0",
|
|
136
|
+
"@tsrx/oxc-linux-x64-musl": "0.9.0",
|
|
137
|
+
"@tsrx/oxc-win32-arm64-msvc": "0.9.0",
|
|
138
|
+
"@tsrx/oxc-win32-x64-msvc": "0.9.0"
|
|
139
139
|
},
|
|
140
140
|
"engines": {
|
|
141
141
|
"node": "^20.19.0 || >=22.12.0"
|