From 579b5500cbab7b769a73c893b19a031381478e2d Mon Sep 17 00:00:00 2001 From: Cody Date: Thu, 30 Jan 2025 12:15:50 +0000 Subject: [PATCH] Forgot to update the readme in https://github.com/AztecProtocol/aztec-packages/pull/11618 --- yarn-project/noir-bb-bench/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/noir-bb-bench/README.md b/yarn-project/noir-bb-bench/README.md index 407e3ef1a6dd..1e39f11b431a 100644 --- a/yarn-project/noir-bb-bench/README.md +++ b/yarn-project/noir-bb-bench/README.md @@ -6,7 +6,7 @@ The goal of this module is to provide a simple place for people to construct ben The package assumes that bb.js has been built, but it is easy to rebuild, as we show below. -The full build command `yarn build` deletes all circuit artifacts and generated code, compiles the circuits, computes their verification keys, generates declarations and types for parsing circuit bytecode and verification keys in typescript, generates additional type information for noir.js and bb.js, and builds the typescript. With all of this, `yarn test` will run whatever jest tests are present, and `yarn serve:app` will serve a simple app with proving for execution in a web browser. but we can build more incrementally as well. +The full build command `yarn build` deletes all circuit artifacts and generated code, compiles the circuits, computes their verification keys, generates declarations and types for parsing circuit bytecode and verification keys in typescript, generates additional type information for noir.js and bb.js, and builds the typescript. With all of this, `yarn test` will run whatever jest tests are present. To additionally build and deploy the browser test app, use `yarn build:app && yarn serve:app`. We can build more incrementally as well. Some examples: Scenario: I have made changes to bb.js and now I want to rebuild and run the browser app with multithreaded proving and symbols for the meaningful WASM stack traces. Command: ```