snowballtools-base-mirror/scripts/yarn-file-for-local-dev.sh

68 lines
1.3 KiB
Bash
Raw Normal View History

2024-04-11 21:40:22 +00:00
#!/bin/bash
export ENV_FILE=packages/frontend/.env
# Load the .env file
if [ ! -f $ENV_FILE ]; then
echo "$ENV_FILE file not found!"
exit 1
fi
source $ENV_FILE
# Check if the LOCAL_SNOWBALL_SDK_DIR variable is set
if [ -z "$LOCAL_SNOWBALL_SDK_DIR" ]; then
echo "LOCAL_SNOWBALL_SDK_DIR is not set in the .env file."
exit 1
fi
# Define the list of package names, each on its own line
packages=(
"types"
"utils"
"auth"
"auth-lit"
"smartwallet-alchemy-light"
"link-lit-alchemy-light"
"js-sdk"
)
# Check for the --reset flag
RESET=false
for arg in "$@"; do
if [[ $arg == "--reset" ]]; then
RESET=true
break
fi
done
# If --reset flag is provided, remove a specific package first
if [ "$RESET" = true ]; then
# Build the remove command
cmd="yarn workspace frontend remove"
# Append each package path to the command
for pkg in "${packages[@]}"; do
cmd+=" @snowballtools/$pkg"
done
echo "Removing packages..."
echo "Executing: $cmd"
eval $cmd
fi
# Build the add command
cmd="yarn workspace frontend add"
# Append each package path to the command
for pkg in "${packages[@]}"; do
cmd+=" $LOCAL_SNOWBALL_SDK_DIR/packages/$pkg"
done
echo "Adding packages..."
echo "Executing: $cmd"
eval $cmd
echo "SDK packages locally installed."