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.
2 parents aa55747 + b8d6e31 commit d1510feCopy full SHA for d1510fe
packages/core/src/projects/update.ts
@@ -22,7 +22,7 @@ export const checkAndUpdateProjectIfRequired = async () => {
22
23
if (!platform) return;
24
const { isMonorepo } = c.buildConfig;
25
- if (isMonorepo) return true;
+ if (isMonorepo || typeof platform === 'boolean') return true;
26
await applyTemplate();
27
28
const allPlatforms = Object.keys(c.buildConfig?.platforms || {});
0 commit comments