Skip to content

Commit 00818e9

Browse files
committed
v0.5.3 [publish]
1 parent 202fc4a commit 00818e9

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
node-version: 22
1414
- uses: oven-sh/setup-bun@v2
1515
- run: bun install
16-
- run: bun run ci
16+
- run: bun run check

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: ${{ contains(github.event.head_commit.message, '[publish]') }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 22
17+
node-version: 24
1818
registry-url: "https://registry.npmjs.org"
1919
- run: npm install -g npm@latest
2020
- uses: oven-sh/setup-bun@v2
2121
- run: bun install
22-
- run: bun run ci
22+
- run: bun run check
2323
- run: npm publish
2424
working-directory: dist
2525
- uses: ArnaudBarre/github-release@v1

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.5.3
4+
5+
- Fix check for non component class exported via `export { }` [#110](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/pull/110) (fixes [#109](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/109))
6+
37
## 0.5.2
48

59
- Support nested function calls for extraHOCs (actually fixes [#104](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/104))

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "eslint-plugin-react-refresh",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"type": "module",
55
"license": "MIT",
66
"scripts": {
77
"build": "scripts/bundle.ts",
88
"test": "bun test",
99
"lint": "eslint --max-warnings 0",
10-
"prettier": "bun prettier-ci --write",
11-
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{js,ts,json,md,yml}'",
12-
"ci": "tsl && bun lint && bun prettier-ci && bun test && bun run build && cd dist && publint"
10+
"format": "bun format-ci --write",
11+
"format-ci": "prettier --ignore-path=.gitignore --check '**/*.{js,ts,json,md,yml}'",
12+
"check": "tsl && bun lint && bun format-ci && bun test && bun run build && cd dist && publint"
1313
},
1414
"prettier": {
1515
"experimentalOperatorPosition": "start"

0 commit comments

Comments
 (0)