-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (30 loc) · 734 Bytes
/
Makefile
File metadata and controls
41 lines (30 loc) · 734 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
yarn:
yarn
clean:
rm -rf public resources
pull-release-notes-build:
$(MAKE) -C .github/sync
pull-release-notes: pull-release-notes-build
@echo make sure that GITHUB_TOKEN is set
@GITHUB_TOKEN=$(GITHUB_TOKEN) bin/fetchnotes
serve: yarn
hugo server \
--buildDrafts \
--buildFuture \
--disableFastRender
production-build: clean
hugo \
--minify
make check-internal-links
preview-build: clean
hugo \
--baseURL $(DEPLOY_PRIME_URL) \
--buildDrafts \
--buildFuture \
--minify
make check-internal-links
install-link-checker:
curl https://raw.githubusercontent.com/wjdp/htmltest/master/godownloader.sh | bash
run-link-checker:
bin/htmltest -l0
check-internal-links: install-link-checker run-link-checker