Skip to content

Commit 8484296

Browse files
committed
fix: use rollup
1 parent 0ad735f commit 8484296

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

dev_env_setup.sh

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,8 @@ cd "$SCRIPT_DIR"
1111
# Step 1: Run yarn install in the root directory
1212
echo "Running 'yarn install' in the root directory..."
1313
yarn install
14-
15-
# Step 2: Build all packages in packages directory
1614
echo "Building all packages..."
17-
for package in packages/*; do
18-
if [ -d "$package" ]; then
19-
echo "Building $package..."
20-
cd "$package"
21-
if ! yarn build; then
22-
echo "yarn build failed for $package, trying yarn tsc..."
23-
yarn tsc || true # Continue even if tsc fails
24-
fi
25-
cd "$SCRIPT_DIR"
26-
fi
27-
done
15+
yarn build
2816

2917
# Step 3: Link all packages
3018
echo "Linking all packages..."

0 commit comments

Comments
 (0)