-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstart.sh
executable file
·41 lines (34 loc) · 1.19 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /bin/bash
# Need an initial build since the next command executes in any order
build_cmd="turbo run build"
start_cmd="turbo run build:watch start types:watch lint:watch --parallel --concurrency 200"
# Predefined filters
examples_filters="--filter=...{./apps/examples/*}"
private_filters="--filter=...{./apps/private/*}"
use_examples_filters=0
use_private_filters=0
# Check if special arguments are present
for arg in "$@"; do
if [ "$arg" == "examples" ]; then
use_examples_filters=1
elif [ "$arg" == "private" ]; then
use_private_filters=1
fi
done
if [ "$use_examples_filters" -eq 1 ]; then
build_cmd+=" $examples_filters"
start_cmd+=" $examples_filters"
elif [ "$use_private_filters" -eq 1 ]; then
build_cmd+=" $private_filters"
start_cmd+=" $private_filters"
elif [ $# -gt 0 ]; then
# Process regular arguments if no special arguments are found
for arg in "$@"; do
build_cmd+=" --filter=@lightsparkdev/$arg"
start_cmd+=" --filter=@lightsparkdev/$arg"
done
else
build_cmd+=" --filter='./apps/private/*' --filter='./packages/*'"
start_cmd+=" --filter='./apps/private/*' --filter='./packages/*'"
fi
echo $build_cmd && eval $build_cmd && echo $start_cmd && eval $start_cmd