Skip to content

Commit

Permalink
chore: update biome and fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Nov 28, 2023
1 parent ab42fd1 commit b69255f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/clearingNumbers.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type Range = { max: number; min: number } | { max: string; min: string }
type Bank = { bank: string; ranges: Range[] }

export default [
export default ([
{
bank: 'RBS',
ranges: [
Expand Down Expand Up @@ -910,4 +910,4 @@ export default [
},
],
},
] as Bank[]
] as Bank[])
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"main": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "1.3.3",
"bun-types": "1.0.13",
"@biomejs/biome": "1.4.0",
"bun-types": "1.0.14",
"rimraf": "5.0.5",
"typescript": "5.3.2"
},
Expand All @@ -36,7 +36,7 @@
},
"scripts": {
"start": "tsc -w",
"lint": "bunx @biomejs/biome check lib",
"lint": "bun biome check --apply lib",
"test": "bun test",
"prebuild:js": "rimraf dist",
"build:js": "bun build lib/index.ts --minify --outdir ./dist",
Expand Down

0 comments on commit b69255f

Please sign in to comment.