File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
docs/runbook/upgrade-repository-dependencies Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ By running 'make upgrade' command.
88
88
89
89
From the root of the repository, run:
90
90
91
+ [ !IMPORTANT] : This command must be run before upgrading ` mithril-explorer ` .
92
+
91
93
``` bash
92
94
cd mithril-client-wasm
93
95
make upgrade-www-deps
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ By running 'make upgrade' command."
47
47
48
48
# Search all package.json files and bump the version
49
49
# 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
51
51
folder=" $( dirname $package_json_file ) "
52
52
pushd " $folder " || exit
53
53
npm version patch
You can’t perform that action at this time.
0 commit comments