Skip to content

Commit 003425a

Browse files
committed
Remove command remnants
1 parent a16662a commit 003425a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/extension.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { PackageJsonCodeActionProvider } from "./PackageJsonCodeActionProvider"
33
import { findOutdatedPackages } from "./diagnostics/findOutdatedPackages"
44
import { getPackageRanges } from "./diagnostics/getPackageRanges"
55
import { subscribeToDocument } from "./diagnostics/subscribeToDocument"
6-
import { updatePackage } from "./packages/updatePackage"
76
import { DIAGNOSTIC_CODE } from "./utils/vars"
87

98
let diagnosticCollection: vscode.DiagnosticCollection
@@ -44,10 +43,4 @@ export function activate(ctx: vscode.ExtensionContext): void {
4443
}
4544
)
4645
)
47-
48-
ctx.subscriptions.push(
49-
vscode.commands.registerCommand(COMMANDS.update, (name: string) => {
50-
updatePackage(name)
51-
})
52-
)
5346
}

0 commit comments

Comments
 (0)