@arianrhodsandlot/oxc-config 1.2.0 → 1.2.2

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,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.2.2] - 2026-03-18
11
+ ### Fixed
12
+ - Turn on script sort
13
+
14
+ ## [1.2.1] - 2026-03-18
15
+ ### Fixed
16
+ - Add missing entries
17
+
10
18
  ## [1.2.0] - 2026-03-17
11
19
  ### Added
12
20
  - Remove all dependencies
@@ -47,13 +55,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
47
55
  ### Added
48
56
  - Initial release
49
57
 
50
- [1.2.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.6...v1.2.0
51
- [1.1.6]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.5...v1.1.6
52
- [1.1.5]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.4...v1.1.5
53
- [1.1.4]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.3...v1.1.4
54
- [1.1.3]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.2...v1.1.3
55
- [1.1.2]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.1...v1.1.2
56
- [1.1.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.0...v1.1.1
57
- [1.1.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.0.1...v1.1.0
58
- [1.0.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.0.0...v1.0.1
59
- [1.0.0]: https://github.com/arianrhodsandlot/eslint-config/releases/tag/v0.1.0
58
+ [1.2.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.1...v1.2.2
59
+ [1.2.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.0...v1.2.1
60
+ [1.2.0]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.6...v1.2.0
61
+ [1.1.6]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.5...v1.1.6
62
+ [1.1.5]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.4...v1.1.5
63
+ [1.1.4]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.3...v1.1.4
64
+ [1.1.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.2...v1.1.3
65
+ [1.1.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.1...v1.1.2
66
+ [1.1.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.0...v1.1.1
67
+ [1.1.0]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.0.1...v1.1.0
68
+ [1.0.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.0.0...v1.0.1
69
+ [1.0.0]: https://github.com/arianrhodsandlot/oxc-config/releases/tag/v0.1.0
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,19 @@
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
+ },
15
+ "sortPackageJson": {
16
+ "sortScripts": true
17
+ },
12
18
  "tabWidth": 2
13
19
  }
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.2"
18
25
  }
package/release-notes.md CHANGED
@@ -1,2 +1,2 @@
1
- ### Added
2
- - Remove all dependencies
1
+ ### Fixed
2
+ - Turn on script sort