Skip to content

Commit

Permalink
Prose wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Jul 19, 2019
1 parent 9525590 commit fa90d4c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
semi: false
proseWrap: always
singleQuote: true
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
#### testing

- <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 textrun="verify-make-command">make help</b>: see all available Make
commands
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# End-Child-Processes

[![CircleCI](https://circleci.com/gh/kevgo/end-child-processes.svg?style=shield)](https://circleci.com/gh/kevgo/end-child-processes) [![Build status](https://ci.appveyor.com/api/projects/status/mawb87nkafx7sqvx/branch/master?svg=true)](https://ci.appveyor.com/project/kevgo/end-child-processes/branch/master)
[![CircleCI](https://circleci.com/gh/kevgo/end-child-processes.svg?style=shield)](https://circleci.com/gh/kevgo/end-child-processes)
[![Build status](https://ci.appveyor.com/api/projects/status/mawb87nkafx7sqvx/branch/master?svg=true)](https://ci.appveyor.com/project/kevgo/end-child-processes/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/kevgo/end-child-processes/badge.svg)](https://coveralls.io/github/kevgo/end-child-processes)
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/kevgo/end-child-processes.svg)](https://lgtm.com/projects/g/kevgo/end-child-processes/context:javascript)

This library reliably ends all child processes (and their child processes)
that were spawned by the current process,
without ending the current process itself.
This library reliably ends all child processes (and their child processes) that
were spawned by the current process, without ending the current process itself.

## Installation

Expand All @@ -32,12 +32,13 @@ await endChildProcesses()

## Related work

There are a number of other libraries,
but they either also kill the root process
or don't work:
There are a number of other libraries, but they either also kill the root
process or don't work:

- [tree-kill](https://github.com/pkrumins/node-tree-kill): Kill all processes in the process tree, including the root process
- [@jub3i/tree-kill](https://github.com/jub3i/tree-kill): Kill all processes in the process tree, including the root process
- [tree-kill](https://github.com/pkrumins/node-tree-kill): Kill all processes in
the process tree, including the root process
- [@jub3i/tree-kill](https://github.com/jub3i/tree-kill): Kill all processes in
the process tree, including the root process

## Development

Expand Down

0 comments on commit fa90d4c

Please sign in to comment.