-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve documentation #18
Conversation
02bec35
to
c276f25
Compare
README.md
Outdated
## Debug | ||
|
||
Enable verbose debugging by setting the DEBUG environment variable to DEBUG=process-manager. | ||
|
||
## Release | ||
|
||
```shell | ||
$ npm version [<newversion> | major | minor | patch] -m "Release %s"` | ||
$ npm version [<new version> | major | minor | patch] -m "Release %s"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❯
README.md
Outdated
``` | ||
## Test | ||
|
||
To test using a local version of `node.js`, run: | ||
To test using a local version of `node`, run: | ||
|
||
```sh | ||
$ yarn test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❯
c276f25
to
e51e114
Compare
@@ -13,13 +13,13 @@ graceful shutdowns. | |||
Install the package via **yarn**: | |||
|
|||
```shell | |||
$ yarn add '@uphold/process-manager' | |||
❯ yarn add '@uphold/process-manager' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👎
``` | ||
|
||
Or **npm**: | ||
|
||
```shell | ||
$ npm install '@uphold/process-manager' --save | ||
❯ npm install '@uphold/process-manager' --save |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👎
## Debug | ||
|
||
Enable verbose debugging by setting the DEBUG environment variable to DEBUG=process-manager. | ||
|
||
## Release | ||
|
||
```shell | ||
$ npm version [<newversion> | major | minor | patch] -m "Release %s"` | ||
❯ npm version [<new version> | major | minor | patch] -m "Release %s"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👎
|
||
```sh | ||
$ yarn test | ||
❯ yarn test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👎
Adds LICENSE and fixes some inconsistencies in the documentation.