Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/managed-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: git install builds with runtime deps only
runs-on: ubuntu-latest
env:
BB_VERSION: "0.36.0"
BB_VERSION: "0.39.0"
BB_DATA_DIR: ${{ github.workspace }}/.bb-data
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// It is that an agent rewrites and deletes records here every night, and until
// now the only trace was a per-record history you had to already suspect.
import { useCallback, useEffect, useRef, useState } from "react";
import { definePluginApp, useRealtime, useRpc } from "@bb/plugin-sdk/app";
import { definePluginApp, useRealtime, useRpc } from "@get-bb/plugin-sdk/app";
import type { rpcContract } from "./server";

type Row = {
Expand Down
49 changes: 48 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"engines": {
"bb": ">=0.36",
"bbPluginSdk": "^0.4.1"
"bbPluginSdk": ">=0.4.8"
},
"bb": {
"name": "Memory UI",
Expand All @@ -25,6 +25,7 @@
"zod": "^4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.8",
"@radix-ui/react-dialog": "^1.1.19",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
Expand Down
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import { execFile, execFileSync } from "node:child_process";
import os from "node:os";
import { promisify } from "node:util";
import { defineRpcContract, type BbPluginApi } from "@bb/plugin-sdk";
import { defineRpcContract, type BbPluginApi } from "@get-bb/plugin-sdk";
import { z } from "zod";

const run = promisify(execFile);
Expand Down
7 changes: 0 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
"node"
],
"paths": {
"@bb/plugin-sdk": [
"./types/bb-plugin-sdk.d.ts"
],
"@bb/plugin-sdk/app": [
"./types/bb-plugin-sdk-app.d.ts"
],
"@/*": [
"./*"
]
Expand All @@ -29,7 +23,6 @@
"include": [
"server.ts",
"app.tsx",
"types",
"components",
"lib",
"hooks"
Expand Down
Loading
Loading