Skip to content

Commit

Permalink
Fix code formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
1000hz committed Oct 10, 2023
1 parent a4509d5 commit bd06b29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/packageManagers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("getPackageManager", () => {
}
`);

expect(getPackageManager('bun', { workingDirectory: "test/bun" }))
expect(getPackageManager("bun", { workingDirectory: "test/bun" }))
.toMatchInlineSnapshot(`
{
"exec": "bunx",
Expand Down
2 changes: 1 addition & 1 deletion src/packageManagers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const PACKAGE_MANAGERS = {
},
bun: {
install: "bun i",
exec: "bunx"
exec: "bunx",
},
} as const satisfies Readonly<Record<string, PackageManager>>;

Expand Down
2 changes: 1 addition & 1 deletion test/bun/package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "wrangler-action-bun-test",
"name": "wrangler-action-bun-test"
}

0 comments on commit bd06b29

Please sign in to comment.