-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
43 lines (34 loc) · 1.41 KB
/
Justfile
File metadata and controls
43 lines (34 loc) · 1.41 KB
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
41
42
43
usage:
sh scripts/usage.sh
init:
just install
just build-init-deps
just build
install:
yarn install
build:
yarn run task build
test:
yarn run task test
clean:
sh scripts/clean-others.sh
dev:
yarn workspace @this-project/development-scripts-generate-build-json run start
yarn workspace @this-project/development-scripts-list-packages-topo-order run start
task name:
yarn run task {{name}}
# build task and its dependencies
# change scripts/init-without-just.sh if below changes
build-init-deps: build-init-deps-development-util-args build-init-deps-util-atomic-env build-init-deps-util-atomic-event-bus build-init-deps-util-atomic-throttled-pool build-init-deps-util-atomic-unwrap-non-nullable build-init-deps-development-scripts-task
build-init-deps-development-util-args:
yarn workspace @this-project/development-util-args run build
build-init-deps-util-atomic-env:
yarn workspace @this-project/util-atomic-env run build
build-init-deps-util-atomic-event-bus:
yarn workspace @this-project/util-atomic-event-bus run build
build-init-deps-util-atomic-throttled-pool: build-init-deps-util-atomic-event-bus
yarn workspace @this-project/util-atomic-throttled-pool run build
build-init-deps-util-atomic-unwrap-non-nullable:
yarn workspace @this-project/util-atomic-unwrap-non-nullable run build
build-init-deps-development-scripts-task:
yarn workspace @this-project/development-scripts-task run build