UNPKG
electron-otr
Version:
latest (0.2.16)
0.2.16
Off-the-Record Messaging Protocol
github.com/mstrodl/otr
mstrodl/otr
electron-otr
/
Makefile
19 lines
(12 loc)
•
255 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# make test TEST=otr
TEST=*
# make build TASK=otr
TASK=default
all: lint test
lint:
./node_modules/.bin/grunt jshint
test:
./node_modules/.bin/mocha -G -R spec test/spec/unit/
$(TEST)
.js
build:
./node_modules/.bin/grunt
$(TASK)
.PHONY
: test build