Skip to content

Commit 7d1709b

Browse files
committed
0.4.15 [publish]
1 parent ec747c2 commit 7d1709b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/publish.yml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
if: ${{ contains(github.event.head_commit.message, '[publish]') }}
1010
steps:
1111
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 22
1215
- uses: oven-sh/setup-bun@v2
1316
- run: bun install
1417
- run: bun ci

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.4.15
44

55
### Add support for custom HOCs (#60)
66

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "eslint-plugin-react-refresh",
3-
"version": "0.4.14",
3+
"version": "0.4.15",
44
"type": "module",
55
"license": "MIT",
66
"scripts": {
77
"build": "scripts/bundle.ts",
88
"test": "bun test",
9-
"lint": "bun eslint . --max-warnings 0",
9+
"lint": "eslint --max-warnings 0",
1010
"prettier": "bun prettier-ci --write",
1111
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{js,ts,json,md,yml}'",
1212
"ci": "tsc && bun lint && bun prettier-ci && bun test && bun run build && cd dist && publint"

0 commit comments

Comments
 (0)