Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fadd0bcdf3f80a83ea8e2776c7f4c96113fdb108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: all clean test up

up: setup view

view:
	@bundle exec nanoc compile && bundle exec nanoc view

live:
	@bundle exec nanoc compile && bundle exec nanoc live

setup:
	@asdf install && bundle install && yarn install --frozen-lockfile

clean:
	@rm -rf tmp public

test: setup
	@bundle exec rspec && yarn test && yarn eslint && yarn prettier