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

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Aug 29, 2024
1 parent e5c5d2c commit f569856
Show file tree
Hide file tree
Showing 5 changed files with 6 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 @@ -12,7 +12,7 @@ export const versionCmd = async (ctx: AppContext, args: any) => {
table.push({ name: "@tscircuit/cli", current: cliPackageJson.version })
table.push({
name: "@tscircuit/react-fiber",
current: cliPackageJson.devDependencies["@tscircuit/react-fiber"],
current: cliPackageJson.dependencies["@tscircuit/react-fiber"],
})
table.push({
name: "@tscircuit/schematic-viewer",
Expand Down
2 changes: 1 addition & 1 deletion frontend/views/HeaderMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export const HeaderMenu = () => {
</MenubarItem>
<MenubarItem disabled>
@tscircuit/react-fiber v
{cliPackageJson.devDependencies["@tscircuit/react-fiber"].replace(
{cliPackageJson.dependencies["@tscircuit/react-fiber"].replace(
/\^/g,
"",
)}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@edge-runtime/primitives": "^4.1.0",
"@hono/node-server": "^1.8.2",
"@tscircuit/builder": "*",
"@tscircuit/core": "^0.0.11",
"@tscircuit/core": "0.0.11",
"@tscircuit/react-fiber": "1.2.0",
"archiver": "^7.0.1",
"axios": "^1.6.7",
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true,
"verbatimModuleSyntax": false
"verbatimModuleSyntax": false,
},
"include": ["src/**/*", "cli/**/*", "frontend/**/*"],
"exclude": ["node_modules"]
}

0 comments on commit f569856

Please sign in to comment.