We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e14d6 commit 88f5fb1Copy full SHA for 88f5fb1
packages/build/src/homebrew/utils.ts
@@ -6,10 +6,10 @@ export async function npmPackageSha256(
6
httpGetFn: typeof httpGet = httpGet
7
): Promise<string> {
8
const json = await httpGetFn<{
9
- dist: {
10
- tarball: string;
11
- shasum: string;
12
- }
+ dist: {
+ tarball: string;
+ shasum: string;
+ };
13
}>(packageUrl, 'json');
14
const tarballUrl = json.dist.tarball;
15
const shasum = json.dist.shasum;
0 commit comments