From 065e988f0f6a7106f74c66a709d995ec3bc88207 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 12 Jan 2024 09:41:41 -0300 Subject: [PATCH] fix(cli): Unbox should set up the accounts package (#3972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should fix the following reported by @jzaki: ``` ... YN0001: │ Error: @aztec/accounts@portal:.aztec-packages/yarn-project/accounts::locator=%40aztec%2Fbox-blank%40workspace%3A.: Manifest not found ... ``` --- yarn-project/cli/src/cmds/unbox.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/yarn-project/cli/src/cmds/unbox.ts b/yarn-project/cli/src/cmds/unbox.ts index 0d70ea42a55..51eed3345a9 100644 --- a/yarn-project/cli/src/cmds/unbox.ts +++ b/yarn-project/cli/src/cmds/unbox.ts @@ -63,6 +63,7 @@ function copyDependenciesToBox(dirName: string, destPath: string) { 'barretenberg/ts', 'yarn-project/aztec-nr', 'yarn-project/noir-protocol-circuits', + 'yarn-project/accounts', 'yarn-project/aztec.js', 'yarn-project/circuits.js', 'yarn-project/foundation',