Skip to content

Commit

Permalink
Add cherry-pick script
Browse files Browse the repository at this point in the history
  • Loading branch information
infrmtcs committed Oct 18, 2024
1 parent b648a60 commit 7043c0a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions cherry-pick.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

git reset --hard fork/fork-base
git cherry-pick fork/fork-base..fork/blueprint
git cherry-pick fork/fork-base..fork/wallet-from-seed-utxos
git cherry-pick fork/fork-base..fork/native-script
deno task pack
tar -xvzf lucid-cardano-0.10.10.tgz package/web/mod.js
mv package/web/mod.js lucid-cardano-0.10.10.js
git add .
git commit -m "Rebuild artifact"
1 change: 1 addition & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"build": "deno run --allow-env --allow-write --allow-read --allow-net --allow-run build.ts",
"build:core": "cd src/core/libs/cardano_multiplatform_lib && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./; cd ../cardano_message_signing && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./",
"publish": "deno task build && deno task test && npm publish dist",
"pack": "deno task build && deno task test && npm pack ./dist",
"test": "deno test --allow-env --allow-read --allow-net tests",
"test:core": "cd src/core/libs/cardano_multiplatform_lib && cargo test; cd ../cardano_message_signing && cargo test"
},
Expand Down

0 comments on commit 7043c0a

Please sign in to comment.