aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-vscode/src/extension.ts
blob: e333aedd716be03d6620cb24ccaa4cab2b1b70e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import * as vscode from "vscode";
import activateLockfile from "./features/lockfile";
import activateDebug from "./features/debug";

export function activate(context: vscode.ExtensionContext) {
  activateLockfile(context);
  activateDebug(context);
}

export function deactivate() {}