chore(release): update version to 0.3.0

This commit is contained in:
Nathan Flurry 2026-03-07 18:02:44 -08:00
parent cd29dd57c4
commit 3d9476ed0b
32 changed files with 93 additions and 57 deletions

View file

@ -9,6 +9,7 @@ COPY sdks/typescript/package.json ./sdks/typescript/
COPY sdks/cli-shared/package.json ./sdks/cli-shared/
COPY sdks/acp-http-client/package.json ./sdks/acp-http-client/
COPY sdks/persist-indexeddb/package.json ./sdks/persist-indexeddb/
COPY sdks/react/package.json ./sdks/react/
# Install dependencies
RUN pnpm install --filter @sandbox-agent/inspector...
@ -29,6 +30,10 @@ RUN cd sdks/typescript && pnpm exec tsup
COPY sdks/persist-indexeddb ./sdks/persist-indexeddb
RUN cd sdks/persist-indexeddb && pnpm exec tsup
# Copy react and build (depends on SDK)
COPY sdks/react ./sdks/react
RUN cd sdks/react && pnpm exec tsup
# Copy inspector source
COPY frontend/packages/inspector ./frontend/packages/inspector