@arianrhodsandlot/oxc-config 1.2.0 → 1.2.1

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/changelog.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.2.1] - 2026-03-18
11
+ ### Fixed
12
+ - Add missing entries
13
+
10
14
  ## [1.2.0] - 2026-03-17
11
15
  ### Added
12
16
  - Remove all dependencies
@@ -47,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
47
51
  ### Added
48
52
  - Initial release
49
53
 
54
+ [1.2.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.2.0...v1.2.1
50
55
  [1.2.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.6...v1.2.0
51
56
  [1.1.6]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.5...v1.1.6
52
57
  [1.1.5]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.4...v1.1.5
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare const oxfmtrc: any
2
+ declare const oxlintrc: any
3
+
4
+ export { oxfmtrc, oxlintrc }
package/oxfmtrc.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "$schema": "https://cdn.jsdelivr.net/npm/oxfmt@latest/configuration_schema.json",
3
- "experimentalSortImports": {
4
- "groups": [["builtin"], ["external"], ["internal"], ["subpath"], ["parent"], ["sibling"], ["index"], ["unknown"]],
5
- "newlinesBetween": false
6
- },
7
- "experimentalTailwindcss": { "enabled": true, "functions": ["classnames", "clsx", "cn", "cva", "cx", "twMerge"] },
8
3
  "jsxSingleQuote": true,
9
4
  "printWidth": 120,
10
5
  "semi": false,
11
6
  "singleQuote": true,
7
+ "sortImports": {
8
+ "groups": [["builtin"], ["external"], ["internal"], ["subpath"], ["parent"], ["sibling"], ["index"], ["unknown"]],
9
+ "newlinesBetween": false
10
+ },
11
+ "sortTailwindcss": {
12
+ "enabled": true,
13
+ "functions": ["classnames", "clsx", "cn", "cva", "cx", "twMerge"]
14
+ },
12
15
  "tabWidth": 2
13
16
  }
package/package.json CHANGED
@@ -6,7 +6,14 @@
6
6
  "oxfmt",
7
7
  "oxlint"
8
8
  ],
9
- "module": "index.js",
9
+ "module": "./index.js",
10
+ "types": "./index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "import": "./index.js"
15
+ }
16
+ },
10
17
  "license": "MIT",
11
18
  "author": {
12
19
  "name": "arianrhodsandlot",
@@ -14,5 +21,5 @@
14
21
  },
15
22
  "repository": "arianrhodsandlot/oxc-config",
16
23
  "type": "module",
17
- "version": "1.2.0"
24
+ "version": "1.2.1"
18
25
  }
package/release-notes.md CHANGED
@@ -1,2 +1,2 @@
1
- ### Added
2
- - Remove all dependencies
1
+ ### Fixed
2
+ - Add missing entries