diff --git a/boxes/package.json b/boxes/package.json index c0c3cda556f4..ad941bc6c07d 100644 --- a/boxes/package.json +++ b/boxes/package.json @@ -1,9 +1,8 @@ { "name": "create-aztec-app", "packageManager": "yarn@4.0.2", - "version": "0.4.2", + "version": "0.4.4", "type": "module", - "private": true, "scripts": { "compile": "yarn workspaces foreach -A -v run compile", "build": "yarn workspaces foreach -A -v run build", diff --git a/boxes/scripts/steps/sandbox/run.js b/boxes/scripts/steps/sandbox/run.js index 77238e289b72..65206dd785a9 100644 --- a/boxes/scripts/steps/sandbox/run.js +++ b/boxes/scripts/steps/sandbox/run.js @@ -4,8 +4,8 @@ import axios from "axios"; const sandbox = (command) => execSync( - `docker-compose -f $HOME/.aztec/docker-compose.yml -p sandbox ${command}`, - { stdio: "inherit" }, + `docker compose -f $HOME/.aztec/docker-compose.yml -p sandbox ${command}`, + { stdio: "inherit" } ); export const start = () => sandbox("up -d"); @@ -29,7 +29,7 @@ export async function sandboxRunStep() { Accept: "*/*", "Content-Type": "application/json", }, - }, + } ); spinner.succeed(); success("The Sandbox is already running!");