Skip to content

Commit

Permalink
chore: fix package.json to do bundle on host machine
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Aug 24, 2024
1 parent 1a8e934 commit 7326159
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@
"start:docker": "docker compose up -d",
"docker:logs": "docker compose logs --tail 200 -f",
"docker:bash": "docker compose exec agd bash",
"docker:make": "docker compose exec agd make -C /workspace",
"docker:make": "docker compose exec agd make -C /workspace/contract/",
"docker:lower-bundle-cost": "yarn docker:make mint100 lower-bundle-cost",
"docker:copy-bundles1": "docker cp bundles agd:/workspace/contract; docker cp start-offer-up-permit.json agd:/workspace/contract; docker cp start-offer-up.js agd:/workspace/contract",
"docker:copy-bundles": "./scripts/copy-bundles.sh",
"docker:copy-Makefile": "docker exec agd mkdir -p /workspace/contract; docker cp Makefile agd:/workspace/contract/",
"make:help": "make list",
"start": "yarn docker:copy-Makefile && yarn build-proposal && yarn docker:copy-bundles && yarn docker:make start-contract -C /workspace/contract/",
"start2": "yarn docker:copy-Makefile && yarn docker:lower-bundle-cost && yarn build-proposal && yarn docker:copy-bundles && yarn docker:make start-contract",
"start1": "yarn docker:copy-Makefile && yarn docker:lower-bundle-cost && make start-contract",
"start": "yarn docker:copy-Makefile && yarn build-proposal && yarn docker:copy-bundles && yarn docker:make start-contract",
"build-proposal": "mkdir -p bundles && yarn build >/tmp/,run.log && ./scripts/parseProposals.mjs </tmp/,run.log | jq -r '.bundles[]' | sort -u > bundles/bundle-list",
"build": "agoric run scripts/build-contract-deployer.js",
"test": "ava --verbose",
Expand Down

0 comments on commit 7326159

Please sign in to comment.