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

Commit

Permalink
move builder to regular dep (#128)
Browse files Browse the repository at this point in the history
* move builder to regular dep

* update lock file

* fix type issue (about page versions)
  • Loading branch information
seveibar authored Aug 22, 2024
1 parent 97b13b6 commit 9a46f09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion cli/lib/cmd-fns/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const versionCmd = async (ctx: AppContext, args: any) => {
})
table.push({
name: "@tscircuit/builder",
current: cliPackageJson.devDependencies["@tscircuit/builder"],
current: cliPackageJson.dependencies["@tscircuit/builder"],
})

if (args.showLatest) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/views/HeaderMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export const HeaderMenu = () => {
</MenubarItem>
<MenubarItem disabled>
@tscircuit/builder v
{cliPackageJson.devDependencies?.["@tscircuit/builder"]?.replace(
{cliPackageJson.dependencies?.["@tscircuit/builder"]?.replace(
/\^/g,
"",
)}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
"ts-morph": "^22.0.0",
"tsup": "^8.0.2",
"winterspec": "0.0.86",
"zod": "^3.22.4"
"zod": "^3.22.4",
"@tscircuit/builder": "^1.11.1"
},
"peerDependencies": {
"@tscircuit/builder": "*",
Expand All @@ -92,7 +93,6 @@
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tscircuit/3d-viewer": "^0.0.16",
"@tscircuit/builder": "*",
"@tscircuit/layout": "^0.0.25",
"@tscircuit/manual-edit-events": "^0.0.4",
"@tscircuit/pcb-viewer": "^1.4.4",
Expand Down

0 comments on commit 9a46f09

Please sign in to comment.