We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb8d4ad commit 4fd17f2Copy full SHA for 4fd17f2
Makefile
@@ -2,19 +2,20 @@ BIN=node_modules/.bin
2
3
test:
4
make lint
5
- $(BIN)/mocha test/specs/
+ $(BIN)/mocha test/specs
6
+ make docs && git diff master:DOCUMENTATION.md DOCUMENTATION.md
7
8
lint:
9
$(BIN)/eslint bin/doxdox
- $(BIN)/eslint lib/
10
+ $(BIN)/eslint lib
11
$(BIN)/eslint index.js
12
$(BIN)/eslint 'test/specs/**/*.js'
13
14
coverage:
15
$(BIN)/istanbul cover $(BIN)/_mocha test/specs && $(BIN)/codecov
16
17
fixtures:
- bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package lib/
18
+ bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package lib
19
20
docs:
21
bin/doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md
0 commit comments