-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (41 loc) · 999 Bytes
/
Makefile
File metadata and controls
52 lines (41 loc) · 999 Bytes
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
44
45
46
47
48
49
50
51
52
.PHONY: help \
bruno-generate \
bruno-check \
documentation-setup \
documentation-dev \
documentation-dev-host \
documentation-build \
documentation-preview \
documentation-clean
help:
@echo "Bruno Collection:"
@echo " bruno-generate"
@echo " bruno-check"
@echo ""
@echo "Documentation:"
@echo " documentation-setup"
@echo " documentation-dev"
@echo " documentation-dev-host"
@echo " documentation-build"
@echo " documentation-preview"
@echo " documentation-clean"
########################
# Bruno Collection
bruno-generate:
bun specs/api/hurl-to-bruno.js
bruno-check:
bun specs/api/hurl-to-bruno.js --check
########################
# Documentation
documentation-setup:
cd docs && bun install
documentation-dev:
cd docs && bun run dev
documentation-dev-host:
cd docs && bun run dev --host
documentation-build:
cd docs && bun run build
documentation-preview:
cd docs && bun run preview
documentation-clean:
rm -rf docs/.astro docs/dist docs/node_modules