Skip to content

Commit

Permalink
Update telemetry wrapper to 0.14.0 (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Jun 17, 2024
1 parent d5e1716 commit 1621c75
Show file tree
Hide file tree
Showing 3 changed files with 205 additions and 73 deletions.
272 changes: 203 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"uuid": "^8.3.2",
"vscode-extension-telemetry-wrapper": "^0.13.3",
"vscode-extension-telemetry-wrapper": "^0.14.0",
"vscode-languageclient": "6.0.0-next.9",
"vscode-languageserver-types": "3.16.0",
"vscode-tas-client": "^0.1.84"
Expand Down
4 changes: 1 addition & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ import { registerVariableMenuCommands } from "./variableMenu";
import { promisify } from "util";

export async function activate(context: vscode.ExtensionContext): Promise<any> {
await initializeFromJsonFile(context.asAbsolutePath("./package.json"), {
firstParty: true,
});
await initializeFromJsonFile(context.asAbsolutePath("./package.json"));
await initExpService(context);
return instrumentOperation("activation", initializeExtension)(context);
}
Expand Down

0 comments on commit 1621c75

Please sign in to comment.