Remove Makefile and migrate to NPM scripts (#1135)

* Remove Makefile and migrate to NPM scripts

* Update documentation/.arclint

* Check node version in prestart

* Group test npm scripts into `test:`
This commit is contained in:
ylemkimon
2018-02-07 02:39:24 +09:00
committed by Kevin Barabash
parent 73d80f595c
commit 383a68b935
6 changed files with 19 additions and 112 deletions

View File

@@ -2,7 +2,7 @@
"linters": {
"katex-linter": {
"type": "script-and-regex",
"script-and-regex.script": "make lint || true",
"script-and-regex.script": "npm run test:lint || true",
"script-and-regex.regex": "/^(?P<file>\\S+): line (?P<line>\\d+), col \\d+, (?P<message>.*)$/m"
}
}