Skip to content

Commit 00e9a54

Browse files
committed
update proposals needed and update build scripts to not force download dev dependencies
1 parent 7f4cde9 commit 00e9a54

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Extension/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
],
4040
"enabledApiProposals": [
4141
"terminalDataWriteEvent",
42-
"chatVariableResolver",
43-
"chatParticipantPrivate",
4442
"chatParticipantAdditions"
4543
],
4644
"capabilities": {
@@ -6530,6 +6528,7 @@
65306528
"lint": "yarn install && eslint -c .eslintrc.js --report-unused-disable-directives src test ui .scripts",
65316529
"compile": "yarn install && (yarn verify prep --quiet || yarn prep) && yarn build",
65326530
"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",
65336532
"rebuild": "yarn install && yarn clean && yarn prep && yarn build",
65346533
"vsix-prepublish": "yarn install && yarn clean && yarn webpack",
65356534
"webpack": "yarn install && (yarn verify prep --quiet || yarn prep) && tsc --build ui.tsconfig.json && webpack --mode production --env vscode_nls",
@@ -6540,8 +6539,10 @@
65406539
"translations-generate": "set NODE_OPTIONS=--no-experimental-fetch && gulp translations-generate",
65416540
"translations-import": "gulp translations-import",
65426541
"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"
65456546
},
65466547
"devDependencies": {
65476548
"@octokit/rest": "^20.1.1",

0 commit comments

Comments
 (0)