From 373c0afe9c94b142a109f4a23f7e10e6f45b4c3c Mon Sep 17 00:00:00 2001 From: thaddmt <68032955+thaddmt@users.noreply.github.com> Date: Wed, 15 Nov 2023 08:37:16 -0800 Subject: [PATCH] fix: build system tests prep for v6 (#4720) --- build-system-tests/package.json | 2 +- build-system-tests/scripts/mega-app-install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-system-tests/package.json b/build-system-tests/package.json index c939a24bc2a..3e4684a972b 100644 --- a/build-system-tests/package.json +++ b/build-system-tests/package.json @@ -27,7 +27,7 @@ "react-latest-vite-latest-ts": "npm run setup:react:vite", "react-16-cra-latest-ts": "npm run setup:react:cra -- -f 16", "react-latest-cra-latest-js": "npm run setup:react:cra -- -l js", - "react-17-next-11-ts": "npm run setup:react:next -- -f 17 -b 11", + "react-18-next-12-ts": "npm run setup:react:next -- -f 18 -b 12", "react-latest-vite-2-ts": "npm run setup:react:vite -- -b 2", "angular-latest-angular-cli-16-ts": "npm run setup:angular:cli -- -b 16", "angular-14-angular-cli-14-ts": "npm run setup:angular:cli -- -f 14 -b 14 -n angular-latest-angular-cli-v14-ts", diff --git a/build-system-tests/scripts/mega-app-install.sh b/build-system-tests/scripts/mega-app-install.sh index 35606c8acfe..c7d78e367d1 100755 --- a/build-system-tests/scripts/mega-app-install.sh +++ b/build-system-tests/scripts/mega-app-install.sh @@ -91,8 +91,8 @@ cd ./mega-apps/${MEGA_APP_NAME} if [ "$FRAMEWORK" == 'react' ]; then # add react-dom - echo "DEPENDENCIES='$DEPENDENCIES react-dom@$FRAMEWORK_VERSION @aws-amplify/ui-react-storage @aws-amplify/ui-react-geo @aws-amplify/ui-react-notifications'" - DEPENDENCIES="$DEPENDENCIES react-dom@$FRAMEWORK_VERSION @aws-amplify/ui-react-storage @aws-amplify/ui-react-geo @aws-amplify/ui-react-notifications" + echo "DEPENDENCIES='$DEPENDENCIES react-dom@$FRAMEWORK_VERSION @aws-amplify/ui-react-storage @aws-amplify/ui-react-geo @aws-amplify/ui-react-notifications @aws-amplify/geo'" + DEPENDENCIES="$DEPENDENCIES react-dom@$FRAMEWORK_VERSION @aws-amplify/ui-react-storage @aws-amplify/ui-react-geo @aws-amplify/ui-react-notifications @aws-amplify/geo" if [[ "$BUILD_TOOL" == 'cra' && "$LANGUAGE" == 'ts' ]]; then DEP_TYPES="@types/react@$FRAMEWORK_VERSION @types/react-dom@$FRAMEWORK_VERSION"