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 3376917 commit adc8f97Copy full SHA for adc8f97
packages/@apphosting/adapter-angular/src/utils.ts
@@ -108,6 +108,7 @@ export function populateOutputBundleOptions(outputPaths: OutputPaths): OutputBun
108
109
export function parseOutputBundleOptions(buildOutput: string): OutputBundleOptions {
110
const strippedManifest = extractManifestOutput(buildOutput);
111
+ // TODO: add functional tests that test this flow
112
const parsedManifest = JSON.parse(strippedManifest.replace(/[\r\n]+/g, "")) as string;
113
const manifest = buildManifestSchema.parse(parsedManifest);
114
if (manifest["errors"].length > 0) {
0 commit comments