Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/angular/test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,12 @@ cp -R $FULL_BASE_DIR $BUILD_APP_DIR
# will override any files in the base application.
cp -R $FULL_APP_DIR $BUILD_APP_DIR

echo "Copied test app files for ${APP_DIR}"
GREEN='\033[0;32m'
NC='\033[0m' # No Color

# Print a message with instructions for developers.
echo -e "\n${GREEN}Successfully generated test app at: $BUILD_APP_DIR \n${NC}"
echo -e "Please follow these steps:"
echo -e " 1. cd $BUILD_APP_DIR"
echo -e " 2. Install dependencies with: pnpm install"
echo -e " 3. Run the dev server with: pnpm start\n"
10 changes: 10 additions & 0 deletions packages/react/test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ cp -R $FULL_BASE_DIR $BUILD_APP_DIR
# Then we can copy the specific app which
# will override any files in the base application.
cp -R $FULL_APP_DIR $BUILD_APP_DIR

GREEN='\033[0;32m'
NC='\033[0m' # No Color

# Print a message with instructions for developers.
echo -e "\n${GREEN}Successfully generated test app at: $BUILD_APP_DIR \n${NC}"
echo -e "Please follow these steps:"
echo -e " 1. cd $BUILD_APP_DIR"
echo -e " 2. Install dependencies with: pnpm install"
echo -e " 3. Run the dev server with: pnpm dev\n"
10 changes: 10 additions & 0 deletions packages/vue/test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ cp -R $FULL_BASE_DIR $BUILD_APP_DIR
# Then we can copy the specific app which
# will override any files in the base application.
cp -R $FULL_APP_DIR $BUILD_APP_DIR

GREEN='\033[0;32m'
NC='\033[0m' # No Color

# Print a message with instructions for developers.
echo -e "\n${GREEN}Successfully generated test app at: $BUILD_APP_DIR \n${NC}"
echo -e "Please follow these steps:"
echo -e " 1. cd $BUILD_APP_DIR"
echo -e " 2. Install dependencies with: pnpm install"
echo -e " 3. Run the dev server with: pnpm dev\n"