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 0ad735f commit 8484296Copy full SHA for 8484296
dev_env_setup.sh
@@ -11,20 +11,8 @@ cd "$SCRIPT_DIR"
11
# Step 1: Run yarn install in the root directory
12
echo "Running 'yarn install' in the root directory..."
13
yarn install
14
-
15
-# Step 2: Build all packages in packages directory
16
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
27
-done
+yarn build
28
29
# Step 3: Link all packages
30
echo "Linking all packages..."
0 commit comments