Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion boxes/boxes/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"prep": "yarn clean && yarn compile && yarn codegen",
"dev": "yarn prep && webpack serve --mode development",
"build": "yarn prep && webpack",
"serve": "webpack serve --no-open --mode development",
"serve": "webpack serve --no-open --mode development --watch-files ./src/*",
"formatting": "prettier --check ./src && eslint ./src",
"formatting:fix": "prettier -w ./src",
"test": "yarn test:node && yarn test:browser",
Expand Down
2 changes: 1 addition & 1 deletion boxes/boxes/vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"prep": "yarn clean && yarn compile && yarn codegen && tsc -b",
"dev": "yarn prep && webpack serve --mode development",
"build": "yarn prep && webpack",
"serve": "webpack serve --no-open --mode development",
"serve": "webpack serve --no-open --mode development --watch-files ./src/*",
"test": "npx playwright test",
"formatting": "prettier --check ./src && eslint ./src",
"formatting:fix": "prettier -w ./src"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ aztec-wallet bridge-fee-juice 100000000000000000 main --mint --no-wait
section "Create a bootstrapping account just to force block creation"

aztec-wallet create-account -a bootstrap
aztec-wallet deploy counter_contract@Counter --init initialize --args 0 accounts:main accounts:main -f bootstrap -a counter
aztec-wallet deploy counter_contract@Counter --init initialize --args 0 accounts:main -f bootstrap -a counter
aztec-wallet send increment -ca counter --args accounts:main accounts:main -f bootstrap
aztec-wallet send increment -ca counter --args accounts:main accounts:main -f bootstrap

Expand Down