-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathHOWTO.txt
33 lines (20 loc) · 843 Bytes
/
HOWTO.txt
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
###############################################################################
## Build the docs
To be able to build the docs you will need a nodejs installation and the
yuidoc component:
# npm -g install yuidoc
Before building the docs, you can do a dry run on the comments and see if
there's errors with "./build_docs.sh lint".
To rebuild the docs just "./build_docs.sh"
###############################################################################
## Build the bookmarklet
See ./bookmarklet_build/HOWTO.txt
###############################################################################
## Tag a new version
TODO
###############################################################################
## Lint the code
TODO
jslint --css --color css/*css
jslint --color src/*js
find . -name "*.js" -print0 | xargs -0 jslint