Skip to content

Commit

Permalink
Bun dev deps [publish]
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Jul 8, 2023
1 parent b2ffc67 commit dad0e9e
Show file tree
Hide file tree
Showing 6 changed files with 329 additions and 333 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 0.4.2

- Fix typos in messages (#15, #16). Thanks @adamschachne & @janikga!

## 0.4.1

- Ignore `export type *` (fixes #12)
Expand Down
Binary file modified bun.lockb
Binary file not shown.
23 changes: 10 additions & 13 deletions package.json
@@ -1,28 +1,25 @@
{
"name": "eslint-plugin-react-refresh",
"version": "0.4.1",
"version": "0.4.2",
"license": "MIT",
"scripts": {
"build": "scripts/bundle.ts",
"prettier": "bun prettier-ci --write",
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{ts,json,md,yml}'",
"ci": "tsc && bun prettier-ci && bun test && bun run build"
},
"prettier": {
"trailingComma": "all"
},
"peerDependencies": {
"eslint": ">=7"
},
"devDependencies": {
"@nabla/tnode": "^0.9.0",
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.3",
"@typescript-eslint/parser": "^5.59.2",
"@typescript-eslint/utils": "^5.59.1",
"bun-types": "^0.5.8",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
"@arnaud-barre/tnode": "^0.18.0",
"@types/eslint": "^8.44.0",
"@types/node": "^18.16.19",
"@typescript-eslint/parser": "^5.61.0",
"@typescript-eslint/utils": "^5.61.0",
"bun-types": "^0.6.13",
"eslint": "^8.44.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}
2 changes: 1 addition & 1 deletion scripts/bundle.ts
Expand Up @@ -3,7 +3,7 @@ import { rmSync, writeFileSync } from "fs";
import { execSync } from "child_process";
import { build } from "esbuild";

import * as packageJSON from "../package.json";
import packageJSON from "../package.json";

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

Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -4,6 +4,7 @@
/* Target node 14 */
"target": "ES2020",
"module": "CommonJS",
"esModuleInterop": true,
"lib": ["ES2020"],
"types": ["bun-types"],

Expand Down

0 comments on commit dad0e9e

Please sign in to comment.