forked from josdejong/workerpool
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -408,6 +408,19 @@ To see the coverage results, open the generated report in your browser: | |
./coverage/lcov-report/index.html | ||
|
||
|
||
## Publish | ||
|
||
- Describe changes in HISTORY.md | ||
- Update version in package.json, run `npm install` to update it in `package-lock.json` too. | ||
- Push to github | ||
- Deploy to npm via `npm publish` | ||
- Add a git tag with the version number like: | ||
``` | ||
git tag v1.2.3 | ||
git push --tags | ||
``` | ||
|
||
|
||
## License | ||
|
||
Copyright (C) 2014-2019 Jos de Jong <[email protected]> | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "workerpool", | ||
"license": "Apache-2.0", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "Offload tasks to a pool of workers on node.js and in the browser", | ||
"homepage": "https://github.com/josdejong/workerpool", | ||
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)", | ||
|