microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
agents/azure-cli-json-output-format

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/.vscode/tasks.json

69lines · modecode

1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "shell",
6 "command": "npm run build -- --vscode",
7 "group": {
8 "kind": "build",
9 "isDefault": true
10 },
11 "problemMatcher": [
12 "$tsc"
13 ],
14 "label": "npm run build",
15 "detail": "npm run build"
16 },
17 {
18 "type": "shell",
19 "command": "pnpm i",
20 "isBackground": true,
21 "group": {
22 "kind": "build",
23 "isDefault": false
24 },
25 "label": "pnpm install",
26 "detail": "pnpm install"
27 },
28 {
29 "type": "shell",
30 "command": "pnpm run deploy:local",
31 "options": {
32 "cwd": "${workspaceFolder}/packages/coda"
33 },
34 "problemMatcher": [],
35 "label": "TypeAgent: Install Coda extension (local)",
36 "detail": "Package and install the agent-coda VS Code extension from packages/coda"
37 },
38 {
39 "type": "shell",
40 "command": "pnpm run deploy:local",
41 "options": {
42 "cwd": "${workspaceFolder}/packages/vscode-shell"
43 },
44 "problemMatcher": [],
45 "label": "TypeAgent: Install VS Code Shell extension (local)",
46 "detail": "Package and install the vscode-shell extension from packages/vscode-shell"
47 },
48 {
49 "type": "shell",
50 "label": "TypeAgent: Install local extensions",
51 "detail": "Install both the Coda and VS Code Shell extensions from this workspace",
52 "dependsOrder": "sequence",
53 "dependsOn": [
54 "TypeAgent: Install Coda extension (local)",
55 "TypeAgent: Install VS Code Shell extension (local)"
56 ],
57 "problemMatcher": []
58 },
59 {
60 "type": "shell",
61 "command": "npx fluid-build agr-language -t build --dep",
62 "problemMatcher": [
63 "$tsc"
64 ],
65 "label": "build agr-language",
66 "detail": "Build agr-language extension and its dependencies"
67 }
68 ]
69}
70