Fix code formatting errors

This commit is contained in:
Cina Saffary 2023-10-10 18:00:40 -05:00
parent a4509d507c
commit bd06b290b1
3 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ describe("getPackageManager", () => {
}
`);
expect(getPackageManager('bun', { workingDirectory: "test/bun" }))
expect(getPackageManager("bun", { workingDirectory: "test/bun" }))
.toMatchInlineSnapshot(`
{
"exec": "bunx",

View file

@ -21,7 +21,7 @@ const PACKAGE_MANAGERS = {
},
bun: {
install: "bun i",
exec: "bunx"
exec: "bunx",
},
} as const satisfies Readonly<Record<string, PackageManager>>;

View file

@ -1,3 +1,3 @@
{
"name": "wrangler-action-bun-test",
"name": "wrangler-action-bun-test"
}