-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/move-ledger-icp-features
- Loading branch information
Showing
2 changed files
with
27 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Reference: NPM RRFC --if-needed https://github.com/npm/rfcs/issues/466 | ||
|
||
function publish_npm() { | ||
local lib=$1 | ||
|
||
LOCAL_SHASUM=$(npm pack -w packages/"$lib" --json | jq '.[] | .shasum' | sed -r 's/^"|"$//g') | ||
|
||
NPM_TARBALL=$(npm show @dfinity/"$lib" dist.tarball) | ||
NPM_SHASUM=$(curl -s "$NPM_TARBALL" 2>&1 | shasum | cut -f1 -d' ') | ||
|
||
if [ "$LOCAL_SHASUM" == "$NPM_SHASUM" ]; then | ||
echo "No changes in @dfinity/$lib need to be published to NPM." | ||
else | ||
npm publish --workspace=packages/"$lib" --provenance --access public | ||
fi | ||
} | ||
|
||
# Tips: libs use by other libs first | ||
LIBS=utils,ledger,nns-proto,nns,sns,cmc,ckbtc,ic-management | ||
|
||
for lib in $(echo $LIBS | sed "s/,/ /g"); do | ||
publish_npm "$lib" | ||
done |