Skip to content

Commit fb3a449

Browse files
committed
fix: prevent from incrementing mithril-client-wasm version in /pkg/
1 parent d4d7e6a commit fb3a449

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/runbook/upgrade-repository-dependencies/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ By running 'make upgrade' command.
8888

8989
From the root of the repository, run:
9090

91+
[!IMPORTANT]: This command must be run before upgrading `mithril-explorer`.
92+
9193
```bash
9294
cd mithril-client-wasm
9395
make upgrade-www-deps

docs/runbook/upgrade-repository-dependencies/upgrade_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ By running 'make upgrade' command."
4747

4848
# Search all package.json files and bump the version
4949
# and exclude `package.json` in `node_modules` folder
50-
for package_json_file in $(find . -name package.json | grep -v "/node_modules/"); do
50+
for package_json_file in $(find . -name package.json | grep -v "/node_modules/" | grep -v "/pkg/"); do
5151
folder="$(dirname $package_json_file)"
5252
pushd "$folder" || exit
5353
npm version patch

0 commit comments

Comments
 (0)