{ "version": "2.0.0", "tasks": [ { "type": "shell", "command": "pnpm --filter typeagent-studio build", "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [], "label": "build typeagent-studio", "detail": "Build the TypeAgent Studio VS Code extension" }, { "type": "shell", "command": "npm run build -- --vscode", "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$tsc" ], "label": "npm run build", "detail": "npm run build" }, { "type": "shell", "command": "pnpm i", "isBackground": true, "group": { "kind": "build", "isDefault": false }, "label": "pnpm install", "detail": "pnpm install" }, { "type": "shell", "command": "pnpm run deploy:local", "options": { "cwd": "${workspaceFolder}/packages/coda" }, "problemMatcher": [], "label": "TypeAgent: Install Coda extension (local)", "detail": "Package and install the agent-coda VS Code extension from packages/coda" }, { "type": "shell", "command": "pnpm run deploy:local", "options": { "cwd": "${workspaceFolder}/packages/vscode-shell" }, "problemMatcher": [], "label": "TypeAgent: Install VS Code Shell extension (local)", "detail": "Package and install the vscode-shell extension from packages/vscode-shell" }, { "type": "shell", "label": "TypeAgent: Install local extensions", "detail": "Install both the Coda and VS Code Shell extensions from this workspace", "dependsOrder": "sequence", "dependsOn": [ "TypeAgent: Install Coda extension (local)", "TypeAgent: Install VS Code Shell extension (local)" ], "problemMatcher": [] }, { "type": "shell", "command": "npx fluid-build agr-language -t build --dep", "problemMatcher": [ "$tsc" ], "label": "build agr-language", "detail": "Build agr-language extension and its dependencies" } ] }