Skip to content

Commit ed55fab

Browse files
committed
Force bin/doxdox to be run via node.js
1 parent 05f06d4 commit ed55fab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
},
3030
"scripts": {
3131
"test": "npm run lint && mocha test/specs/ && npm run test:flags && npm run test:docs",
32-
"test:flags": "bin/doxdox 'lib/**/*.js' --description Description --title Title --package test/fixtures/ --ignore 'lib/**/*.js' | diff test/fixtures/flags.md -",
33-
"test:docs": "bin/doxdox 'lib/**/*.js' -p package.json -l markdown | diff DOCUMENTATION.md -",
32+
"test:flags": "node bin/doxdox 'lib/**/*.js' --description Description --title Title --package test/fixtures/ --ignore 'lib/**/*.js' | diff test/fixtures/flags.md -",
33+
"test:docs": "node bin/doxdox 'lib/**/*.js' -p package.json -l markdown | diff DOCUMENTATION.md -",
3434
"lint": "eslint .",
3535
"coverage": "istanbul cover _mocha test/specs/ && codecov",
36-
"fixtures": "bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package test/fixtures/",
37-
"docs": "bin/doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md"
36+
"fixtures": "node bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package test/fixtures/",
37+
"docs": "node bin/doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md"
3838
},
3939
"keywords": [
4040
"documentation",

0 commit comments

Comments
 (0)