You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constoutput=execSync(`npx nx show project ${opts.projectName}`);
39
42
constprojectJson=JSON.parse(output.toString());
40
43
constbuilder=projectJson.targets.build.executor;
41
-
if(builder!==REQUIRED_BUILDER){
44
+
if(!ALLOWED_BUILDERS.includes(builder)){
42
45
thrownewError(
43
-
"Only the Angular application builder is supported. Please refer to https://angular.dev/tools/cli/build-system-migration#for-existing-applications guide to upgrade your builder to the Angular application builder. ",
46
+
`Currently, only the following builders are supported: ${ALLOWED_BUILDERS.join(",")}.`,
"Only the Angular application builder is supported. Please refer to https://angular.dev/tools/cli/build-system-migration#for-existing-applications guide to upgrade your builder to the Angular application builder. ",
83
+
`Currently, only the following builders are supported: ${ALLOWED_BUILDERS.join(",")}.`,
0 commit comments