Skip to content

Commit

Permalink
Merge pull request #124 from AhaLabs/build/no-rm-target
Browse files Browse the repository at this point in the history
build: don't rm target when cleaning
  • Loading branch information
kalepail committed Jul 17, 2023
2 parents 1dab5f8 + ac8f3ac commit 5c21ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "next start",
"lint": "next lint",
"setup": "./initialize.sh ${NETWORK:-futurenet} && npm install",
"clean": "rm -rf .next .soroban .soroban-example-dapp node_modules target",
"clean": "rm -rf .next .soroban .soroban-example-dapp node_modules",
"reset": "npm run clean && npm run setup",
"postinstall": "rm -rf ./.soroban/crowdfund-contract && rm -rf ./.soroban/abundance-token && ./target/bin/soroban contract bindings typescript --wasm ./target/wasm32-unknown-unknown/release/soroban_crowdfund_contract.wasm --id $(cat ./.soroban-example-dapp/crowdfund_id) --output-dir ./.soroban/crowdfund-contract --network $(cat ./.soroban-example-dapp/network) --contract-name crowdfund-contract && ./target/bin/soroban contract bindings typescript --wasm ./target/wasm32-unknown-unknown/release/abundance_token.wasm --id $(cat ./.soroban-example-dapp/abundance_token_id) --output-dir ./.soroban/abundance-token --network $(cat ./.soroban-example-dapp/network) --contract-name abundance-token"
},
Expand Down

0 comments on commit 5c21ade

Please sign in to comment.