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 bf09dae commit 992cfc2Copy full SHA for 992cfc2
dev-env.sh
@@ -18,14 +18,15 @@ install_root_dependencies() {
18
build_packages() {
19
echo "Building all packages..."
20
cd "$SCRIPT_DIR"
21
+
22
+ # Building typescript packages first from root (it's referenced project)
23
+ yarn tsc
24
25
for package in packages/*; do
26
if [ -d "$package" ]; then
27
echo "Building $package..."
28
cd "$package"
- if ! yarn build 2>/dev/null; then
- #echo "yarn build failed for $package, trying yarn tsc..."
- yarn tsc 2>/dev/null || true
- fi
29
+ yarn build 2>/dev/null || true
30
31
fi
32
done
0 commit comments