CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
tasks.json42 linesDownload Raw Back to .vscode
1{2  "version": "2.0.0",3  "tasks": [4    {5      "type": "npm",6      "script": "build",7      "group": {8        "kind": "build",9        "isDefault": true10      },11      "problemMatcher": [],12      "label": "npm: build",13      "detail": "scripts/build.sh"14    },15    {16      "type": "npm",17      "script": "build",18      "path": "packages/vscode-ide-companion",19      "group": "build",20      "problemMatcher": [],21      "label": "npm: build: vscode-ide-companion",22      "detail": "npm run build -w packages/vscode-ide-companion"23    },24    {25      "label": "copy: bundled-cli (dev)",26      "type": "shell",27      "command": "node",28      "args": ["packages/vscode-ide-companion/scripts/copy-bundled-cli.js"],29      "problemMatcher": []30    },31    {32      "label": "launch: vscode-ide-companion (copy+build)",33      "dependsOrder": "sequence",34      "dependsOn": [35        "copy: bundled-cli (dev)",36        "npm: build: vscode-ide-companion"37      ],38      "problemMatcher": []39    }40  ]41}42 
basant307/AI_Governance_Project · CoolFace