UNPKG
interface-addresses
Version:
latest (0.0.5)
0.0.5
0.0.4
get the private network ip address of the machine
nisaacson/interface-addresses
interface-addresses
/
makefile
11 lines
(7 loc)
•
204 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
MOCHA?=node_modules/.bin/mocha CONFIG?=test/config.json REPORTER?=tap FLAGS=--config
$(CONFIG)
--reporter
$(REPORTER)
test:
$(MOCHA)
$(
shell
find test/* -prune -name
"*test.js"
)
$(FLAGS)
.PHONY
: test