-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathMakefile
57 lines (44 loc) · 1.13 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
.DELETE_ON_ERROR:
BABEL_OPTIONS = --stage 0
BIN = ./node_modules/.bin
TESTS = $(shell find src -path '*/__tests__/*-test.js')
SRC = $(filter-out $(TESTS), $(shell find src -name '*.js'))
LIB = $(SRC:src/%.js=lib/%.js) $(SRC:src/%.js=lib/%.js.flow)
NODE = $(BIN)/babel-node $(BABEL_OPTIONS)
build:
@$(MAKE) -j 8 $(LIB)
test::
@$(BIN)/jest
ci::
@$(BIN)/jest --watch
lint::
@$(BIN)/flow
version-major version-minor version-patch: lint test
@npm version $(@:version-%=%)
publish: build
@git push --tags origin HEAD:master
@npm publish
lib/%.js: src/%.js
@echo "Building $(@)"
@mkdir -p $(@D)
@$(BIN)/babel $(BABEL_OPTIONS) -o $@ $<
lib/%.js.flow: src/%.js
@echo "Building $(@)"
@mkdir -p $(@D)
@cp $(<) $(@)
example: build
@(cd example; $(BIN)/webpack --hide-modules)
watch-example: build
@(cd example; $(BIN)/webpack --watch --hide-modules)
publish-example: build
@(cd example;\
rm -rf .git;\
git init .;\
$(BIN)/webpack -p;\
git checkout -b gh-pages;\
git add .;\
git commit -m 'Update';\
git push -f [email protected]:andreypopp/react-fa.git gh-pages;\
)
clean:
@rm -rf lib