Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 4f63ab9

Browse files
committed
Converted from Makefile to npm scripts.
1 parent cccaaed commit 4f63ab9

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@
2020
"doxdox": "~2.0.3"
2121
},
2222
"scripts": {
23-
"test": "make test"
23+
"test": "npm run lint && doxdox index.js --layout index.js | diff test/fixtures/documentation.html -",
24+
"test:docs": "doxdox index.js --layout markdown | diff DOCUMENTATION.md -",
25+
"lint": "eslint .",
26+
"fixtures": "doxdox index.js --layout index.js --output test/fixtures/documentation.html",
27+
"docs": "doxdox index.js --layout markdown --output DOCUMENTATION.md"
2428
},
2529
"keywords": [
2630
"doxdox",

0 commit comments

Comments
 (0)