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 aedf9a0 commit 9372fa7Copy full SHA for 9372fa7
build-system-tests/scripts/setup-mega-app.sh
@@ -82,6 +82,13 @@ echo "##################"
82
echo "# Setup Mega App #"
83
echo "##################"
84
85
+# Override Angular latest to v20 until v21 compatibility is resolved
86
+if [ "$FRAMEWORK" == "angular" ] && [ "$BUILD_TOOL" == "angular-cli" ] && [ "$FRAMEWORK_VERSION" == "latest" ] && [ "$BUILD_TOOL_VERSION" == "latest" ]; then
87
+ FRAMEWORK_VERSION="20"
88
+ BUILD_TOOL_VERSION="20"
89
+ echo "Overriding Angular latest to v20 to bypass compatibility issues with v21+"
90
+fi
91
+
92
BASE_OPTIONS="--build-tool $BUILD_TOOL --name $MEGA_APP_NAME --framework $FRAMEWORK --framework-version $FRAMEWORK_VERSION"
93
94
# Create mega app
0 commit comments