forked from locutusjs/locutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
101 lines (88 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
SHELL := /bin/bash
.PHONY: setup
setup:
git pull && \
cd _octopress && \
bundle exec rake setup_github_pages\[[email protected]:kvz/phpjs.git\] && \
cd .. ; \
.PHONY: test
test:
ulimit -n 1024 ||true
npm install
make build
./node_modules/.bin/mocha --reporter list
node bin/phpjs.js --action test --debug
# Apply code standards & reformat headers
.PHONY: cleanup
cleanup:
node bin/phpjs.js --action cleanup
@./node_modules/.bin/jscs --fix functions/ || true
@$(MAKE) test
.PHONY: serve
serve:
python -m SimpleHTTPServer
.PHONY: upgrade-npm-dependencies
upgrade-npm-dependencies:
@npm install
@./node_modules/.bin/npm-check-updates --upgrade
@npm install
@$(MAKE) test
@git add ./package.json
@git commit -m'Upgrade NPM dependencies'
@git pull && git push
.PHONY: test-cleanup
test-cleanup:
node bin/phpjs.js --action cleanup --name array_change_key_case
node bin/phpjs.js --action cleanup --name echo
git diff functions/array/array_change_key_case.js
git diff functions/strings/echo.js
git checkout -- functions/array/array_change_key_case.js
git checkout -- functions/strings/echo.js
.PHONY: npm
npm:
node bin/phpjs.js --action buildnpm --output build/npm.js
ls -al build/npm.js
node build/npm.js
node test/npm/npm.js
echo "Build success. "
.PHONY: publish
publish: npm
npm publish
.PHONY: build
build: npm
.PHONY: hook
hook:
mkdir -p ~/.gittemplate/hooks
curl https://raw.github.com/kvz/ochtra/master/pre-commit -o ~/.gittemplate/hooks/pre-commit
chmod u+x ~/.gittemplate/hooks/pre-commit
git config --global init.templatedir '~/.gittemplate'
rm .git/hooks/pre-commit || true
git init
.PHONY: site
site:
git pull && \
cd _octopress && \
bundle install && \
npm install && \
bundle exec rake integrate && \
bundle exec rake build && \
bundle exec rake generate && \
bundle exec rake deploy ; \
cd .. ; \
git add --all . ; \
git commit -anm "Update site" ; \
git push origin master
.PHONY: site-clean
site-clean:
cd _octopress && \
git clean -fd ; \
git reset --hard ; \
bundle exec rake clean ; \
cd ..
.PHONY: site-preview
site-preview:
cd _octopress && \
bundle exec rake build && \
bundle exec rake generate && \
bundle exec rake preview ; \
cd ..