Skip to content

Commit

Permalink
fix(): temp fix for packaging as we work through backend issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jgw96 committed Dec 10, 2024
1 parent 1152cfb commit 3fb7dc3
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ export async function generateWindowsPackage(
}
}

// temp fix for packaging problem
if (!windowsOptions.enableWebAppWidgets) {
windowsOptions.enableWebAppWidgets = true;
}

if (!windowsOptions.manifestUrl || windowsOptions.manifestUrl.length === 0) {
windowsOptions.manifestUrl = await getManifestUrl();
}

const validationErrors = validateWindowsOptions(windowsOptions);
if (validationErrors.length > 0 || !windowsOptions) {
throw new Error(
Expand Down

0 comments on commit 3fb7dc3

Please sign in to comment.