We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
currentExtensionIsNightly()
1 parent 8fa8bf1 commit a0b257cCopy full SHA for a0b257c
editors/code/src/config.ts
@@ -5,8 +5,6 @@ import { log } from "./util";
5
6
export type UpdatesChannel = "stable" | "nightly";
7
8
-const NIGHTLY_TAG = "nightly";
9
-
10
export type RunnableEnvCfg =
11
| undefined
12
| Record<string, string>
@@ -175,10 +173,6 @@ export class Config {
175
173
gotoTypeDef: this.get<boolean>("hover.actions.gotoTypeDef.enable"),
176
174
};
177
}
178
179
- get currentExtensionIsNightly() {
180
- return this.package.releaseTag === NIGHTLY_TAG;
181
- }
182
183
184
export async function updateConfig(config: vscode.WorkspaceConfiguration) {
0 commit comments