mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +01:00
Fix code formatting errors
This commit is contained in:
parent
a4509d507c
commit
bd06b290b1
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ describe("getPackageManager", () => {
|
||||||
}
|
}
|
||||||
`);
|
`);
|
||||||
|
|
||||||
expect(getPackageManager('bun', { workingDirectory: "test/bun" }))
|
expect(getPackageManager("bun", { workingDirectory: "test/bun" }))
|
||||||
.toMatchInlineSnapshot(`
|
.toMatchInlineSnapshot(`
|
||||||
{
|
{
|
||||||
"exec": "bunx",
|
"exec": "bunx",
|
||||||
|
|
|
@ -21,7 +21,7 @@ const PACKAGE_MANAGERS = {
|
||||||
},
|
},
|
||||||
bun: {
|
bun: {
|
||||||
install: "bun i",
|
install: "bun i",
|
||||||
exec: "bunx"
|
exec: "bunx",
|
||||||
},
|
},
|
||||||
} as const satisfies Readonly<Record<string, PackageManager>>;
|
} as const satisfies Readonly<Record<string, PackageManager>>;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
"name": "wrangler-action-bun-test",
|
"name": "wrangler-action-bun-test"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue