Skip to content

Commit

Permalink
chore(deps): upgrade biome
Browse files Browse the repository at this point in the history
  • Loading branch information
aboqasem committed Jun 2, 2024
1 parent c42fc4b commit 6f64789
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"valibot": "0.30.0"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@biomejs/biome": "1.7.3",
"@commander-js/extra-typings": "12.1.0",
"@total-typescript/ts-reset": "0.5.1",
"@types/bun": "1.1.3",
Expand All @@ -23,7 +23,5 @@
"peerDependencies": {
"typescript": "5.4.5"
},
"trustedDependencies": [
"@biomejs/biome"
]
"trustedDependencies": ["@biomejs/biome"]
}
2 changes: 1 addition & 1 deletion sync/src/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type DirectoryTree = {
[name: string]: string | DirectoryTree;
};

export function tempDirWithFiles(basename: string, files: DirectoryTree): string {
function tempDirWithFiles(basename: string, files: DirectoryTree): string {
function makeTree(base: string, tree: DirectoryTree) {
for (const [name, contents] of Object.entries(tree)) {
const joined = path.join(base, name);
Expand Down

0 comments on commit 6f64789

Please sign in to comment.