18 lines
352 B
Makefile
Executable File
18 lines
352 B
Makefile
Executable File
init:
|
|
@echo 'create git pre-commit hook'
|
|
ln -s ../../lint.sh .git/hooks/pre-commit
|
|
@echo 'adjust pre-commit hook file permission'
|
|
chmod +x .git/hooks/pre-commit
|
|
@echo 'install dependencies'
|
|
npm install
|
|
@echo 'done'
|
|
|
|
gen:
|
|
node ./scripts/gen.js
|
|
|
|
.PHONY: test
|
|
test:
|
|
./node_modules/mocha/bin/mocha test/index.js -s 10 -R spec -b --timeout 60000
|
|
|
|
|