forked from hammerjs/hammerjs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (21 loc) · 721 Bytes
/
Makefile
File metadata and controls
25 lines (21 loc) · 721 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
release:
npm install
cd node_modules/hammer-timejs && \
mv hammer-time.js ../../dist/hammer-time.js && \
mv dist/hammer-time.min.js ../../dist/hammer-time.min.js
cd node_modules/hammerjs && \
npm install && \
grunt concat string-replace uglify:min usebanner && \
mv hammer.js ../../dist/hammer.js && \
mv hammer.min.js ../../dist/hammer.min.js && \
mv hammer.min.map ../../dist/hammer.min.map
node scripts/generate-data.js
node scripts/generate-changelog.js
node node_modules/jsdoc/jsdoc.js -c jsdoc.json
jekyll:
bundle exec jekyll build
make sass
serve:
bundle exec jekyll serve
sass:
node_modules/node-sass/bin/node-sass assets/css/index.scss assets/css/index.css --output-style=compressed