forked from aralejs/aralejs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
60 lines (38 loc) · 828 Bytes
/
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
# Makefile for arale project
# dist
all: events class base widget cookie iframe-shim position easing validator querystring overlay dropdown dialog switchable calendar
events:
node tools/dist.js events
class:
node tools/dist.js class
base:
node tools/dist.js base
widget:
node tools/dist.js widget
cookie:
node tools/dist.js cookie
iframe-shim:
node tools/dist.js iframe-shim
position:
node tools/dist.js position
easing:
node tools/dist.js easing
validator:
node tools/dist.js validator
querystring:
node tools/dist.js querystring
overlay:
node tools/dist.js overlay
triggerable:
node tools/dist.js triggerable
dialog:
node tools/dist.js dialog
switchable:
node tools/dist.js switchable
calendar:
node tools/dist.js calendar
# git
push:
git push origin master
pull:
git pull origin master