Skip to content

Commit

Permalink
Update dependencies (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Oct 20, 2020
1 parent 2c1bca4 commit 5add8e3
Show file tree
Hide file tree
Showing 5 changed files with 680 additions and 1,133 deletions.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -11,7 +11,7 @@ coverage: build # measures test coverage
${CURDIR}/node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls

doc: # runs the documentation tests
${CURDIR}/node_modules/.bin/text-run --offline --format dot
${CURDIR}/node_modules/.bin/text-run --offline --format=dot

fix: # runs the fixers
${CURDIR}/node_modules/.bin/tslint --project . --fix
Expand All @@ -27,6 +27,7 @@ lint: # runs all linters
test: # runs all tests
@${CURDIR}/node_modules/.bin/tslint --project . &
@${CURDIR}/node_modules/.bin/prettier -l . &
@${CURDIR}/node_modules/.bin/text-run --offline --format=dot &
@${CURDIR}/node_modules/.bin/mocha src/test.ts

unit: # runs the unit tests
Expand Down
5 changes: 2 additions & 3 deletions README.md
Expand Up @@ -39,9 +39,8 @@ for you:

## Development

- <b textrun="verify-make-command">make test</b>: runs all tests
- <b textrun="verify-make-command">make help</b>: see all available Make
commands
- <b type="make/command">make test</b>: runs all tests
- <b type="make/command">make help</b>: see all available Make commands

To deploy:

Expand Down
25 changes: 13 additions & 12 deletions package.json
Expand Up @@ -3,25 +3,26 @@
"version": "1.0.1",
"author": "Kevin Goslar",
"dependencies": {
"debug": "4.1.1",
"debug": "4.2.0",
"ps-tree": "1.2.0"
},
"description": "Reliably ends all direct and indirect child processes of the current process",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/debug": "4.1.5",
"@types/mocha": "7.0.2",
"@types/node": "13.9.3",
"@types/mocha": "8.0.3",
"@types/node": "14.14.0",
"@types/ps-tree": "1.1.0",
"coveralls": "3.0.11",
"mocha": "7.1.1",
"nyc": "15.0.0",
"prettier": "2.0.1",
"source-map-support": "0.5.16",
"text-runner": "4.0.2",
"ts-node": "8.8.1",
"tslint": "6.1.0",
"typescript": "3.8.3"
"coveralls": "3.1.0",
"mocha": "8.2.0",
"nyc": "15.1.0",
"prettier": "2.1.2",
"source-map-support": "0.5.19",
"text-runner": "5.0.0-pre10",
"textrun-make": "0.0.10",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.3"
},
"files": [
"dist/*"
Expand Down
31 changes: 0 additions & 31 deletions text-run/verify-make-command.js

This file was deleted.

0 comments on commit 5add8e3

Please sign in to comment.