From 76d33a7193cc9addcbf6e004eec997ed5c0f59cb Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 22 Mar 2023 15:29:35 +0100 Subject: [PATCH] Add missing bin/ directory to cli and faucet files --- CHANGELOG.md | 2 ++ packages/cli/package.json | 1 + packages/faucet/package.json | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c343b7d4b3..96b1aab0a0 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 3b4d1ebd0a..1ae36f66b4 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 84f5f755aa..3d27d5fab7 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.*",