blob: 933904c42b2d7d86fc2cd9f8690e09e648cb33c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# List of drivers to enable on build
.NOTPARALLEL : all
all: lint beautify build
lint:
jshint --verbose *.js */*.js
beautify:
find . -name "*.js" -a ! -name "flashgot-*.js" \
| xargs js-beautify -r
find . -maxdepth 2 -name "*.json" | xargs -n 1 jsonlint -i
build:
jpm xpi
run:
jpm run
watch:
jpm watchpost --post-url http://localhost:8888/
test:
jpm test
|