@prettier/plugin-oxc 0.0.3 → 0.0.5

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 (2) hide show
  1. package/index.mjs +0 -1
  2. package/package.json +5 -4
package/index.mjs CHANGED
@@ -1894,7 +1894,6 @@ async function parseWithOptions(filepath, text, options2) {
1894
1894
  const result = await oxcParser.parseAsync(filepath, text, {
1895
1895
  preserveParens: true,
1896
1896
  showSemanticErrors: false,
1897
- experimentalRawTransfer: oxcParser.rawTransferSupported(),
1898
1897
  ...options2
1899
1898
  });
1900
1899
  const { errors } = result;
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@prettier/plugin-oxc",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Prettier Oxc plugin.",
5
5
  "exports": {
6
6
  ".": {
7
- "types": "./index.d.js",
7
+ "types": "./index.d.ts",
8
8
  "default": "./index.mjs"
9
9
  },
10
10
  "./*": "./*"
@@ -15,9 +15,10 @@
15
15
  "directory": "packages/plugin-oxc"
16
16
  },
17
17
  "funding": "https://github.com/prettier/prettier?sponsor=1",
18
- "homepage": "https://github.com/prettier/prettier/packages/plugin-oxc",
18
+ "homepage": "https://github.com/prettier/prettier/tree/main/packages/plugin-oxc",
19
19
  "author": "fisker Cheung <lionkay@gmail.com>",
20
20
  "license": "MIT",
21
+ "sideEffects": false,
21
22
  "engines": {
22
23
  "node": ">=14"
23
24
  },
@@ -31,7 +32,7 @@
31
32
  "package.json"
32
33
  ],
33
34
  "dependencies": {
34
- "oxc-parser": "0.74.0"
35
+ "oxc-parser": "0.97.0"
35
36
  },
36
37
  "publishConfig": {
37
38
  "access": "public",