-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from nrabinowitz/npm-publishing
Fix npm distribution, add RELEASE doc
- Loading branch information
Showing
4 changed files
with
29 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.log | ||
*.tmp | ||
coverage/ | ||
h3c/ | ||
node_modules/ | ||
.* | ||
build/ | ||
test/ |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Release Process | ||
|
||
Please note the [versioning guidelines](./README.md#versioning). | ||
|
||
1. Create a PR "Preparing for release X.Y.Z" against master branch | ||
* Update `package.json` version to `X.Y.Z` | ||
* Alter CHANGELOG.md from `[Unreleased]` to `[X.Y.Z] YYYY-MM-DD` | ||
|
||
2. Create a release "Release X.Y.Z" on Github | ||
* Create Tag `vX.Y.Z` | ||
* Copy CHANGELOG.md into the release notes | ||
|
||
3. Publish to NPM | ||
* `npm publish` |
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,6 +1,6 @@ | ||
{ | ||
"name": "h3-js", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Emscripten transpiled libh3 'bindings' for Node/Web JS", | ||
"author": "David Ellis <[email protected]>", | ||
"contributors": [ | ||
|