Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
switch to bootstrap installation
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Mar 18, 2024
1 parent 2ec2ae3 commit e1bfd00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
bun-version: latest

- name: Install project dependencies
run: bun install --frozen-lockfile
run: bun run bootstrap

- name: Build project
run: bun run build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"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": "bun i --frozen-lockfile && cd dev-server-api && bun i --frozen-lockfile && cd ../dev-server-frontend && bun i --frozen-lockfile",
"start": "bun cli.ts",
"start:dev-server:dev": "TSCI_DEV_SERVER_DB=$(pwd)/.tscircuit/dev-server.db concurrently 'cd dev-server-api && bun start' 'cd dev-server-frontend && bun start'",
"start:dev-server": "bun build:dev-server && bun cli.ts dev -y --cwd ./tests/assets/example-project",
Expand Down

0 comments on commit e1bfd00

Please sign in to comment.