-
Notifications
You must be signed in to change notification settings - Fork 983
/
Makefile
63 lines (51 loc) · 1.57 KB
/
Makefile
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
53
54
55
56
57
58
59
60
61
62
63
.PHONY: start install serve build i18n-upload i18n-download
.DEFAULT_GOAL := start
start:
@make install
@make serve
install: test-builddeps
@git submodule update --init --recursive
@bundle install
@yarn install
serve: test-builddeps
@yarn start& bundle exec jekyll serve --incremental& wait
build: test-builddeps
@yarn build
@bundle exec jekyll build
serve-production: test-builddeps
@make crowdin-download
@NODE_ENV=production yarn build:production
@JEKYLL_ENV=production bundle exec jekyll serve
build-production: test-builddeps
ifeq ($(CONTEXT), "production")
@make crowdin-download
@ruby ./scripts/validate-translations.rb
endif
@NODE_ENV=production yarn build:production
@JEKYLL_ENV=production bundle exec jekyll build
crowdin-upload: test-crowdin
@crowdin-cli upload sources --auto-update -b master
crowdin-download: test-crowdin
@crowdin-cli download -b master | grep -v '^Extracting: ' | grep -v '^ - '
@ruby ./scripts/remove-unused-languages.rb
@ruby ./scripts/normalize-translations.rb
###
# Misc stuff:
###
BUNDLE_EXISTS := $(shell command -v bundle 2> /dev/null)
CROWDIN_EXISTS := $(shell command -v crowdin-cli 2> /dev/null)
YARN_EXISTS := $(shell command -v yarn 2> /dev/null)
test-builddeps:
ifndef BUNDLE_EXISTS
$(error bundler is not installed. Run `gem install bundler`)
endif
ifndef YARN_EXISTS
$(error yarn is not installed. Follow the instructions on https://yarnpkg.com/docs/install)
endif
test-crowdin:
ifndef CROWDIN_EXISTS
$(error Crowdin is not installed. Run `make install`)
endif
ifndef CROWDIN_API_KEY
$(error CROWDIN_API_KEY is undefined)
endif