|
39 | 39 | ], |
40 | 40 | "enabledApiProposals": [ |
41 | 41 | "terminalDataWriteEvent", |
42 | | - "chatVariableResolver", |
43 | | - "chatParticipantPrivate", |
44 | 42 | "chatParticipantAdditions" |
45 | 43 | ], |
46 | 44 | "capabilities": { |
|
6530 | 6528 | "lint": "yarn install && eslint -c .eslintrc.js --report-unused-disable-directives src test ui .scripts", |
6531 | 6529 | "compile": "yarn install && (yarn verify prep --quiet || yarn prep) && yarn build", |
6532 | 6530 | "watch": "yarn install && (yarn verify prep --quiet || yarn prep) && tsc --build tsconfig.json --watch", |
| 6531 | + "watch-dev": "yarn install && yarn prep:dts-dev && tsc --build tsconfig.json --watch", |
6533 | 6532 | "rebuild": "yarn install && yarn clean && yarn prep && yarn build", |
6534 | 6533 | "vsix-prepublish": "yarn install && yarn clean && yarn webpack", |
6535 | 6534 | "webpack": "yarn install && (yarn verify prep --quiet || yarn prep) && tsc --build ui.tsconfig.json && webpack --mode production --env vscode_nls", |
|
6540 | 6539 | "translations-generate": "set NODE_OPTIONS=--no-experimental-fetch && gulp translations-generate", |
6541 | 6540 | "translations-import": "gulp translations-import", |
6542 | 6541 | "import-edge-strings": "ts-node -T ./.scripts/import_edge_strings.ts", |
6543 | | - "prep:dts": "yarn verify dts --quiet || (npx @vscode/dts dev && npx @vscode/dts main)", |
6544 | | - "build": "yarn prep:dts && echo [Building TypeScript code] && tsc --build tsconfig.json" |
| 6542 | + "prep:dts": "yarn verify dts --quiet || npx @vscode/dts main", |
| 6543 | + "prep:dts-dev": "yarn verify dts --quiet || (npx @vscode/dts main && npx @vscode/dts dev)", |
| 6544 | + "build": "yarn prep:dts && echo [Building TypeScript code] && tsc --build tsconfig.json", |
| 6545 | + "build-dev": "yarn prep:dts-dev && echo [Building TypeScript code with dev dependencies] && tsc --build tsconfig.json" |
6545 | 6546 | }, |
6546 | 6547 | "devDependencies": { |
6547 | 6548 | "@octokit/rest": "^20.1.1", |
|
0 commit comments