From f483e4c602d0c0728028993d6cc7c87ee9454de4 Mon Sep 17 00:00:00 2001 From: orosmatthew Date: Tue, 12 Mar 2024 18:34:04 -0400 Subject: [PATCH] [Sandbox] Add watch script --- sandbox/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/sandbox/package.json b/sandbox/package.json index acbfb20..30af01a 100644 --- a/sandbox/package.json +++ b/sandbox/package.json @@ -6,6 +6,7 @@ "type": "module", "scripts": { "build": "esbuild src/index.ts --bundle --outfile=build/sandbox.cjs --format=cjs --platform=node", + "watch": "esbuild src/index.ts --bundle --outfile=build/sandbox.cjs --format=cjs --platform=node --watch", "check": "tsc -noEmit", "format": "prettier --write .", "lint": "prettier --check . && eslint .",