Skip to content

Commit dad0e9e

Browse files
committed
Bun dev deps [publish]
1 parent b2ffc67 commit dad0e9e

File tree

6 files changed

+329
-333
lines changed

6 files changed

+329
-333
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.4.2
4+
5+
- Fix typos in messages (#15, #16). Thanks @adamschachne & @janikga!
6+
37
## 0.4.1
48

59
- Ignore `export type *` (fixes #12)

bun.lockb

2.77 KB
Binary file not shown.

package.json

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
{
22
"name": "eslint-plugin-react-refresh",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"license": "MIT",
55
"scripts": {
66
"build": "scripts/bundle.ts",
77
"prettier": "bun prettier-ci --write",
88
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{ts,json,md,yml}'",
99
"ci": "tsc && bun prettier-ci && bun test && bun run build"
1010
},
11-
"prettier": {
12-
"trailingComma": "all"
13-
},
1411
"peerDependencies": {
1512
"eslint": ">=7"
1613
},
1714
"devDependencies": {
18-
"@nabla/tnode": "^0.9.0",
19-
"@types/eslint": "^8.37.0",
20-
"@types/node": "^18.16.3",
21-
"@typescript-eslint/parser": "^5.59.2",
22-
"@typescript-eslint/utils": "^5.59.1",
23-
"bun-types": "^0.5.8",
24-
"eslint": "^8.39.0",
25-
"prettier": "^2.8.8",
26-
"typescript": "^5.0.4"
15+
"@arnaud-barre/tnode": "^0.18.0",
16+
"@types/eslint": "^8.44.0",
17+
"@types/node": "^18.16.19",
18+
"@typescript-eslint/parser": "^5.61.0",
19+
"@typescript-eslint/utils": "^5.61.0",
20+
"bun-types": "^0.6.13",
21+
"eslint": "^8.44.0",
22+
"prettier": "^3.0.0",
23+
"typescript": "^5.1.6"
2724
}
2825
}

scripts/bundle.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { rmSync, writeFileSync } from "fs";
33
import { execSync } from "child_process";
44
import { build } from "esbuild";
55

6-
import * as packageJSON from "../package.json";
6+
import packageJSON from "../package.json";
77

88
rmSync("dist", { force: true, recursive: true });
99

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
/* Target node 14 */
55
"target": "ES2020",
66
"module": "CommonJS",
7+
"esModuleInterop": true,
78
"lib": ["ES2020"],
89
"types": ["bun-types"],
910

0 commit comments

Comments
 (0)