Skip to content

Commit

Permalink
committing all files
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Oct 28, 2020
1 parent 55d6971 commit b50d749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ doc: # runs the documentation tests
${CURDIR}/node_modules/.bin/text-run --offline --format=dot

fix: # runs the fixers
${CURDIR}/node_modules/.bin/eslint . --fix --ext=.ts
${CURDIR}/node_modules/.bin/eslint --fix --ext=.ts .
${CURDIR}/node_modules/.bin/prettier --write .

help: # prints all make targets
@cat Makefile | grep '^[^ ]*:' | grep -v '.PHONY' | grep -v help | sed 's/:.*#/#/' | column -s "#" -t

lint: # runs all linters
${CURDIR}/node_modules/.bin/eslint . --ext=.ts
${CURDIR}/node_modules/.bin/eslint --ext=.ts .
${CURDIR}/node_modules/.bin/prettier -l .

test: # runs all tests
@${CURDIR}/node_modules/.bin/eslint . --ext=.ts &
@${CURDIR}/node_modules/.bin/eslint --ext=.ts . &
@${CURDIR}/node_modules/.bin/prettier -l . &
@${CURDIR}/node_modules/.bin/text-run --offline --format=dot &
@${CURDIR}/node_modules/.bin/mocha src/test.ts
Expand Down

0 comments on commit b50d749

Please sign in to comment.