oxfmt 0.2.0 → 0.3.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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -38,3 +38,5 @@ The Oxidation Compiler is creating a suite of high-performance tools for JavaScr
38
38
  ## Oxfmt
39
39
 
40
40
  This is the formatter for oxc.
41
+
42
+ The current version does not work; DO NOT USE.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "oxfmt",
3
- "version": "0.2.0",
4
- "type": "commonjs",
3
+ "version": "0.3.0",
4
+ "type": "module",
5
5
  "description": "Formatter for the JavaScript Oxidation Compiler",
6
6
  "keywords": [],
7
7
  "author": "Boshen and oxc contributors",
@@ -20,20 +20,20 @@
20
20
  "url": "https://github.com/sponsors/Boshen"
21
21
  },
22
22
  "engines": {
23
- "node": ">=8.*"
23
+ "node": "^20.19.0 || >=22.12.0"
24
24
  },
25
25
  "files": [
26
26
  "bin/oxfmt",
27
27
  "README.md"
28
28
  ],
29
29
  "optionalDependencies": {
30
- "@oxfmt/win32-x64": "0.2.0",
31
- "@oxfmt/win32-arm64": "0.2.0",
32
- "@oxfmt/linux-x64-gnu": "0.2.0",
33
- "@oxfmt/linux-arm64-gnu": "0.2.0",
34
- "@oxfmt/linux-x64-musl": "0.2.0",
35
- "@oxfmt/linux-arm64-musl": "0.2.0",
36
- "@oxfmt/darwin-x64": "0.2.0",
37
- "@oxfmt/darwin-arm64": "0.2.0"
30
+ "@oxfmt/win32-x64": "0.3.0",
31
+ "@oxfmt/win32-arm64": "0.3.0",
32
+ "@oxfmt/linux-x64-gnu": "0.3.0",
33
+ "@oxfmt/linux-arm64-gnu": "0.3.0",
34
+ "@oxfmt/linux-x64-musl": "0.3.0",
35
+ "@oxfmt/linux-arm64-musl": "0.3.0",
36
+ "@oxfmt/darwin-x64": "0.3.0",
37
+ "@oxfmt/darwin-arm64": "0.3.0"
38
38
  }
39
39
  }