@arianrhodsandlot/oxc-config 1.2.3 → 1.2.4
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/.github/workflows/release.yaml +1 -1
- package/changelog.md +5 -0
- package/oxlintrc.json +1 -0
- package/package.json +1 -1
- package/release-notes.md +1 -1
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
- run: npx -y @arianrhodsandlot/release-kit release-notes --version ${{ github.ref_name }}
|
|
18
18
|
- run: npm version from-git --no-git-tag-version
|
|
19
19
|
- run: npm publish --no-git-checks --access=public
|
|
20
|
-
- uses: softprops/action-gh-release@
|
|
20
|
+
- uses: softprops/action-gh-release@v3
|
|
21
21
|
if: startsWith(github.ref, 'refs/tags/')
|
|
22
22
|
with:
|
|
23
23
|
body_path: ./release-notes.md
|
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.4] - 2026-05-13
|
|
11
|
+
### Fixed
|
|
12
|
+
- Disable react/forbid-component-props
|
|
13
|
+
|
|
10
14
|
## [1.2.3] - 2026-05-08
|
|
11
15
|
### Fixed
|
|
12
16
|
- Adjust explicit-member-accessibility
|
|
@@ -59,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
63
|
### Added
|
|
60
64
|
- Initial release
|
|
61
65
|
|
|
66
|
+
[1.2.4]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.3...v1.2.4
|
|
62
67
|
[1.2.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.2...v1.2.3
|
|
63
68
|
[1.2.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.1...v1.2.2
|
|
64
69
|
[1.2.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.0...v1.2.1
|
package/oxlintrc.json
CHANGED
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"react-perf/jsx-no-new-array-as-prop": "off",
|
|
116
116
|
"react-perf/jsx-no-new-function-as-prop": "off",
|
|
117
117
|
"react-perf/jsx-no-new-object-as-prop": "off",
|
|
118
|
+
"react/forbid-component-props": "off",
|
|
118
119
|
"react/iframe-missing-sandbox": "off",
|
|
119
120
|
"react/jsx-filename-extension": [
|
|
120
121
|
"error",
|
package/package.json
CHANGED
package/release-notes.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
### Fixed
|
|
2
|
-
-
|
|
2
|
+
- Disable react/forbid-component-props
|