Skip to content

Commit aa08685

Browse files
Upgrade applicationinsights and @vscode/extension-telemetry
1 parent a3b8fea commit aa08685

File tree

9 files changed

+2525
-504
lines changed

9 files changed

+2525
-504
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434

3535
- name: Build
3636
working-directory: extensions/ql-vscode
37-
env:
38-
APP_INSIGHTS_KEY: '${{ secrets.APP_INSIGHTS_KEY }}'
3937
run: |
4038
npm run build
4139
shell: bash
@@ -218,8 +216,6 @@ jobs:
218216

219217
- name: Build
220218
working-directory: extensions/ql-vscode
221-
env:
222-
APP_INSIGHTS_KEY: '${{ secrets.APP_INSIGHTS_KEY }}'
223219
run: |
224220
npm run build
225221
shell: bash

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ jobs:
3131
shell: bash
3232

3333
- name: Build
34-
env:
35-
APP_INSIGHTS_KEY: '${{ secrets.APP_INSIGHTS_KEY }}'
3634
run: |
37-
echo "APP INSIGHTS KEY LENGTH: ${#APP_INSIGHTS_KEY}"
3835
cd extensions/ql-vscode
3936
npm run build -- --release
4037
shell: bash

extensions/ql-vscode/gulpfile.ts/appInsights.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

extensions/ql-vscode/gulpfile.ts/index.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
} from "./typescript";
1010
import { compileTextMateGrammar } from "./textmate";
1111
import { packageExtension } from "./package";
12-
import { injectAppInsightsKey } from "./appInsights";
1312
import {
1413
checkViewTypeScript,
1514
compileViewEsbuild,
@@ -48,12 +47,7 @@ export {
4847
compileEsbuild,
4948
copyWasmFiles,
5049
checkTypeScript,
51-
injectAppInsightsKey,
5250
compileViewEsbuild,
5351
checkViewTypeScript,
5452
};
55-
export default series(
56-
buildWithoutPackage,
57-
injectAppInsightsKey,
58-
packageExtension,
59-
);
53+
export default series(buildWithoutPackage, packageExtension);

0 commit comments

Comments
 (0)