diff --git a/CHANGELOG.md b/CHANGELOG.md index c343b7d4..96b1aab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ and this project adheres to - @cosmjs/tendermint-rpc: Move version check from `Tendermint{34,37}Client.create` to `.connect` in order to allow creating clients without performing the extra network request ([#1358]). +- @cosmjs/cli, @cosmjs/faucet: Add missing `bin/` directory to the + package.json's `files` list to ship it as part of the released package. [#1358]: https://github.com/cosmos/cosmjs/issues/1358 [#1373]: https://github.com/cosmos/cosmjs/pull/1373 diff --git a/packages/cli/package.json b/packages/cli/package.json index 3b4d1ebd..1ae36f66 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -33,6 +33,7 @@ "cosmjs-cli": "bin/cosmjs-cli" }, "files": [ + "bin/", "build/", "tsconfig_repl.json", "*.md", diff --git a/packages/faucet/package.json b/packages/faucet/package.json index 84f5f755..3d27d5fa 100644 --- a/packages/faucet/package.json +++ b/packages/faucet/package.json @@ -11,6 +11,7 @@ "cosmos-faucet": "bin/cosmos-faucet" }, "files": [ + "bin/", "build/", "*.md", "!*.spec.*",