ai-lens 0.8.4 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.commithash CHANGED
@@ -1 +1 @@
1
- 1dfdd25
1
+ f82f461
package/cli/remove.js CHANGED
@@ -145,7 +145,7 @@ export default async function remove() {
145
145
  const dataDir = join(homedir(), '.ai-lens');
146
146
  const dataFiles = [
147
147
  'queue.jsonl', 'queue.sending.jsonl', 'config.json',
148
- 'sender.log', 'capture-drops.log', 'session-paths.json', 'git-remotes.json', 'last-events.json',
148
+ 'sender.log', 'capture.log', 'session-paths.json', 'git-remotes.json', 'last-events.json',
149
149
  ];
150
150
  for (const file of dataFiles) {
151
151
  const filePath = join(dataDir, file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-lens",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "type": "module",
5
5
  "description": "Centralized session analytics for AI coding tools",
6
6
  "bin": {
@@ -17,7 +17,7 @@
17
17
  "prepare": "git rev-parse --short HEAD > .commithash 2>/dev/null || true",
18
18
  "prestart": "npm install --prefix server",
19
19
  "start": "node server/index.js",
20
- "test": "vitest run",
20
+ "test": "DATABASE_URL=postgresql://ailens:ailens@localhost:5432/ailens_test vitest run",
21
21
  "test:watch": "vitest",
22
22
  "dev:dashboard": "npm run --prefix dashboard dev",
23
23
  "build:dashboard": "npm run --prefix dashboard build",