Skip to content

Commit 082a150

Browse files
committed
lint
1 parent 9f0ab86 commit 082a150

File tree

1 file changed

+1
-3
lines changed
  • packages/@apphosting/adapter-angular/src

1 file changed

+1
-3
lines changed

packages/@apphosting/adapter-angular/src/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,7 @@ export function parseOutputBundleOptions(buildOutput: string): OutputBundleOptio
152152
try {
153153
parsedManifest = JSON.parse(strippedManifest.replace(/[\r\n]+/g, "")) as string;
154154
} catch (error) {
155-
throw new Error(
156-
`Failed to parse build output manifest: ${error}`,
157-
);
155+
throw new Error(`Failed to parse build output manifest: ${error}`);
158156
}
159157
const manifest = buildManifestSchema.parse(parsedManifest);
160158
if (manifest["errors"].length > 0) {

0 commit comments

Comments
 (0)