Skip to content

Commit

Permalink
fix: updated dependencies and removed console.log calls
Browse files Browse the repository at this point in the history
* chore: ignore VSCode Workspace files

Signed-off-by: Paul Horton <phorton@sonatype.com>

* chore(dep): update dependencies

Signed-off-by: Paul Horton <phorton@sonatype.com>

* chore: removed console.log calls

Signed-off-by: Paul Horton <phorton@sonatype.com>
  • Loading branch information
madpah authored Jun 16, 2022
1 parent 4e763bf commit 1391895
Show file tree
Hide file tree
Showing 5 changed files with 491 additions and 573 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ yarn-error.log*
.circleci/local-config.yml

*.vsix

# VSCode
*.code-workspace
6 changes: 3 additions & 3 deletions ext-src/ComponentInfoPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class ComponentInfoPanel {
// Handle messages from the webview
this._panel.webview.onDidReceiveMessage(
message => {
console.log("onDidReceiveMessage", message);
// console.log("onDidReceiveMessage", message);
switch (message.command) {
case "selectVersion":
console.debug("selectVersion received, message:", message);
Expand Down Expand Up @@ -161,7 +161,7 @@ export class ComponentInfoPanel {
}

private async showSelectedVersion(message: any) {
console.log("showSelectedVersion", message);
// console.log("showSelectedVersion", message);
if (this.componentModel instanceof IqMultiProjectComponentModel) {
let iqData: NexusIQData = message.package.nexusIQData;
let purl: PackageURL = PackageURL.fromString(iqData.component.packageUrl);
Expand Down Expand Up @@ -250,7 +250,7 @@ export class ComponentInfoPanel {
if (this.component) {
var scanTitle = (this.componentModel instanceof OssIndexComponentModel) ? "OSS Index" : "IQ"
this._panel.title = `${scanTitle} Scan: ${this.component.name}@${this.component.version}`;
console.log("posting message: artifact", this.component);
// console.log("posting message: artifact", this.component);

this.showAllVersions();

Expand Down
Loading

0 comments on commit 1391895

Please sign in to comment.