From 1864d1e4e4f8d0208ca8e615bb1282108f8b5f6d Mon Sep 17 00:00:00 2001 From: seveibar Date: Fri, 9 Aug 2024 15:53:53 -0700 Subject: [PATCH] simplify example project package.json --- example-project/package.json | 5 +++++ package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 example-project/package.json diff --git a/example-project/package.json b/example-project/package.json new file mode 100644 index 00000000..80a2c3a5 --- /dev/null +++ b/example-project/package.json @@ -0,0 +1,5 @@ +{ + "name": "example-project", + "description": "An example project for tscircuit, this package.json is required", + "type": "module" +} diff --git a/package.json b/package.json index 31732baa..cfe05898 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "description": "Command line tool for developing, publishing and installing tscircuit circuits", "main": "./dist/cli.js", "scripts": { - "bootstrap": "bun i && cd dev-server-api && bun i && cd ../dev-server-frontend && bun i", - "bootstrap:ci": "bun i --frozen-lockfile && cd dev-server-api && bun i --frozen-lockfile && cd ../dev-server-frontend && bun i --frozen-lockfile", + "bootstrap": "bun i", + "bootstrap:ci": "bun i --frozen-lockfile", "start": "bun cli.ts", "dev": "bun run build:dev-server && concurrently 'bun run dev:frontend' 'bun run dev:test-project'", "dev:frontend": "vite dev --config dev-server-frontend/vite.config.ts",