-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathMakefile
More file actions
48 lines (33 loc) · 716 Bytes
/
Makefile
File metadata and controls
48 lines (33 loc) · 716 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
SHELL := /bin/bash
-include $(shell curl -sSL -o .build-harness "https://cloudposse.tools/build-harness"; echo .build-harness)
.DEFAULT_GOAL := all
all: real-clean build
@exit 0
deps:
npm install
.PHONY: init build
render:
./scripts/render-docs-for-components.sh
./scripts/render-docs-for-modules.sh
./scripts/render-docs-for-github-actions.sh
build: deps
npm run build
clean::
npm run clear
build-production: build
@exit 0
up: start
start:
npm start
start-production:
npm run serve
real-clean:
rm -fr .docusaurus && \
rm -fr build && \
rm -fr node_modules
lint:
npx docusaurus-mdx-checker --cwd docs
readme/build:
@atmos docs generate readme
readme:
@atmos docs generate readme