Add missing bin/ directory to cli and faucet files

This commit is contained in:
Simon Warta 2023-03-22 15:29:35 +01:00
parent 50b2be2cda
commit 76d33a7193
3 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,8 @@ and this project adheres to
- @cosmjs/tendermint-rpc: Move version check from - @cosmjs/tendermint-rpc: Move version check from
`Tendermint{34,37}Client.create` to `.connect` in order to allow creating `Tendermint{34,37}Client.create` to `.connect` in order to allow creating
clients without performing the extra network request ([#1358]). 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 [#1358]: https://github.com/cosmos/cosmjs/issues/1358
[#1373]: https://github.com/cosmos/cosmjs/pull/1373 [#1373]: https://github.com/cosmos/cosmjs/pull/1373

View File

@ -33,6 +33,7 @@
"cosmjs-cli": "bin/cosmjs-cli" "cosmjs-cli": "bin/cosmjs-cli"
}, },
"files": [ "files": [
"bin/",
"build/", "build/",
"tsconfig_repl.json", "tsconfig_repl.json",
"*.md", "*.md",

View File

@ -11,6 +11,7 @@
"cosmos-faucet": "bin/cosmos-faucet" "cosmos-faucet": "bin/cosmos-faucet"
}, },
"files": [ "files": [
"bin/",
"build/", "build/",
"*.md", "*.md",
"!*.spec.*", "!*.spec.*",