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 7bf7880 commit 3f8b46aCopy full SHA for 3f8b46a
Makefile
@@ -2,17 +2,17 @@ BIN=node_modules/.bin
2
3
test:
4
make lint
5
- $(BIN)/mocha test/specs
+ $(BIN)/mocha test/specs/
6
bin/doxdox 'lib/**/*.js' -p package.json -l markdown | diff DOCUMENTATION.md -
7
8
lint:
9
$(BIN)/eslint bin/doxdox
10
- $(BIN)/eslint lib
+ $(BIN)/eslint lib/
11
$(BIN)/eslint index.js
12
- $(BIN)/eslint 'test/specs/**/*.js'
+ $(BIN)/eslint test/specs/
13
14
coverage:
15
- $(BIN)/istanbul cover $(BIN)/_mocha test/specs && $(BIN)/codecov
+ $(BIN)/istanbul cover $(BIN)/_mocha test/specs/ && $(BIN)/codecov
16
17
fixtures:
18
bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package lib
0 commit comments