You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: enhance CLI-VSCode integration and replace enquirer with inquirer
Add chat history synchronization between CLI, web server, and VSCode
extension. Implement abort operation support and improve message handling
for better WebSocket communication. Replace enquirer with inquirer for
interactive prompts, updating the status bar configuration command.
Update build output directory from 'out' to 'dist' across all packages
and fix bin path configuration.
Copy file name to clipboardExpand all lines: package.json
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
},
29
29
"main": "dist/index.js",
30
30
"bin": {
31
-
"super-agent": "super-agent.js"
31
+
"super-agent": "dist/super-agent.js"
32
32
},
33
33
"workspaces": [
34
34
"@plugins/templates/*",
@@ -37,7 +37,7 @@
37
37
],
38
38
"scripts": {
39
39
"prebuild": "bun run format && bun run lint:fix && bun run typecheck",
40
-
"build": "bun build src/index.ts --outdir ./dist --target node --packages external --format esm && bun run copy-bin && bun run build:web",
40
+
"build": "bun build src/index.ts --outdir ./dist --target node --packages external --format esm && bun run copy-bin && bun run build:web && bun run build:plugins && bun run build:vscode && bun run package:vscode",
0 commit comments