Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1297 from gregdhill/npm
Browse files Browse the repository at this point in the history
point npm to index.js
  • Loading branch information
Greg Hill authored Oct 16, 2019
2 parents 616ae39 + 7fcd075 commit 578b86f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
npm install -g npm-cli-login
npm-cli-login
npm version from-git
cp -R js/* .
npm publish --access public .
docker:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# [Hyperledger Burrow](/~https://github.com/hyperledger/burrow) Changelog
## [0.29.3] - 2019-10-16
### Changed
- [NPM] Point package.json to index.js


## [0.29.2] - 2019-10-15
### Changed
- [NPM] Publish with index.js in TLD
Expand Down Expand Up @@ -588,6 +593,7 @@ This release marks the start of Eris-DB as the full permissioned blockchain node
- [Blockchain] Fix getBlocks to respect block height cap.


[0.29.3]: /~https://github.com/hyperledger/burrow/compare/v0.29.2...v0.29.3
[0.29.2]: /~https://github.com/hyperledger/burrow/compare/v0.29.1...v0.29.2
[0.29.1]: /~https://github.com/hyperledger/burrow/compare/v0.29.0...v0.29.1
[0.29.0]: /~https://github.com/hyperledger/burrow/compare/v0.28.2...v0.29.0
Expand Down
2 changes: 1 addition & 1 deletion NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Changed
- [NPM] Publish with index.js in TLD
- [NPM] Point package.json to index.js

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/burrow",
"description": "Javascript library that calls a Hyperledger Burrow server over rpc.",
"main": "./index.js",
"main": "./js/index.js",
"author": {
"name": "Dennis Mckinnon"
},
Expand Down
5 changes: 5 additions & 0 deletions project/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ func FullVersion() string {
// release tagging script: ./scripts/tag_release.sh
var History relic.ImmutableHistory = relic.NewHistory("Hyperledger Burrow", "/~https://github.com/hyperledger/burrow").
MustDeclareReleases(
"0.29.3 - 2019-10-16",
`### Changed
- [NPM] Point package.json to index.js
`,

"0.29.2 - 2019-10-15",
`### Changed
- [NPM] Publish with index.js in TLD
Expand Down

0 comments on commit 578b86f

Please sign in to comment.