Skip to content

Commit

Permalink
chore: add new packages to pack and publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw committed Sep 24, 2021
1 parent c90c3be commit d161aae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion scripts/pack.sh
Expand Up @@ -2,5 +2,12 @@

set -euo pipefail

npm pack --cwd ./packages/blockfrost && \
npm pack --cwd ./packages/cardano-graphql-db-sync && \
npm pack --cwd ./packages/cardano-serialization-lib && \
npm pack --cwd ./packages/cip2 && \
npm pack --cwd ./packages/cip30 && \
npm pack --cwd ./packages/core && \
npm pack --cwd ./packages/golden-test-generator
npm pack --cwd ./packages/golden-test-generator && \
npm pack --cwd ./packages/in-memory-key-manager && \
npm pack --cwd ./packages/wallet
9 changes: 8 additions & 1 deletion scripts/publish.sh
Expand Up @@ -2,5 +2,12 @@

set -euo pipefail

npm publish --cwd ./packages/blockfrost && \
npm publish --cwd ./packages/cardano-graphql-db-sync && \
npm publish --cwd ./packages/cardano-serialization-lib && \
npm publish --cwd ./packages/cip2 && \
npm publish --cwd ./packages/cip30 && \
npm publish --cwd ./packages/core && \
npm publish --cwd ./packages/golden-test-generator
npm publish --cwd ./packages/golden-test-generator && \
npm publish --cwd ./packages/in-memory-key-manager && \
npm publish --cwd ./packages/wallet

0 comments on commit d161aae

Please sign in to comment.