Skip to content

Commit aa65d38

Browse files
committed
chore: remove workspaces and prepare v1.5.2 for npm
- Removed 'frontend' from workspaces in root package.json so Vercel does a clean NPM install - Reverted frontend build script to 'next build' to rely on the pre-compiled NPM package - Bumped @arienjain/agent-db dependency to ^1.5.2
1 parent 5db73dc commit aa65d38

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"version": "0.1.0",
44
"scripts": {
55
"dev": "next dev",
6-
"build": "npm run build --prefix .. && next build",
6+
"build": "next build",
77
"start": "next start",
88
"lint": "eslint"
99
},
1010
"dependencies": {
11-
"@arienjain/agent-db": "^1.5.0",
11+
"@arienjain/agent-db": "^1.5.2",
1212
"@google/generative-ai": "^0.24.1",
1313
"@storacha/client": "^2.1.1",
1414
"@ucanto/core": "^10.4.6",

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arienjain/agent-db",
3-
"version": "1.5.0",
3+
"version": "1.5.2",
44
"description": "Persistent, encrypted, and permission-controlled memory for autonomous AI agents.",
55
"main": "dist/index.cjs",
66
"module": "dist/index.js",
@@ -12,9 +12,6 @@
1212
"require": "./dist/index.cjs"
1313
}
1414
},
15-
"workspaces": [
16-
"frontend"
17-
],
1815
"scripts": {
1916
"dev": "npm run dev --prefix frontend",
2017
"build": "tsup src/lib/index.ts --format cjs --format esm --dts",

0 commit comments

Comments
 (0)