Skip to content

Commit b52660d

Browse files
committed
chore: stop stripping LLM contributions from stable builds
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 934010c commit b52660d

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## 0.27.3
88

9+
- feat - Enable Copilot LLM tools / chat skills / chat instructions in stable builds
910
- perf - Narrow to Java project to show the explorer in https://github.com/microsoft/vscode-java-dependency/pull/1010
1011
- perf - Use incremental build by default in https://github.com/microsoft/vscode-java-dependency/pull/998
1112
- feat - Add `revealInProjectExplorer` command in https://github.com/microsoft/vscode-java-dependency/pull/996

scripts/prepare-stable-build.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,4 @@ const packageJsonPath = "./package.json";
44
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath).toString());
55
packageJson.preview = false;
66

7-
if (packageJson.contributes) {
8-
delete packageJson.contributes.languageModelTools;
9-
delete packageJson.contributes.chatSkills;
10-
delete packageJson.contributes.chatInstructions;
11-
12-
if (packageJson.contributes.configuration && packageJson.contributes.configuration.properties) {
13-
delete packageJson.contributes.configuration.properties["vscode-java-dependency.enableLspTools"];
14-
}
15-
}
16-
177
fs.writeFileSync("./package.stable.json", `${JSON.stringify(packageJson, null, 2)}\n`);

0 commit comments

Comments
 (0)