Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
.DEFAULT_GOAL := package

.PHONY: package
package:
.PHONY: compile package
package: compile
npm run package

.PHONY: install
install:
npm install

node_modules: package-lock.json
npm ci

.PHONY: compile
compile: node_modules
npm run compile
2 changes: 2 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { startLanguageServer } from "./commands/start-lsp";
import { stopLanguageServer } from "./commands/stop-lsp";
import { log } from "./log";
import { activateStatusBar, deactivateStatusBar } from "./status-bar";
import { bufState } from "./state";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This import should be unused now ^^" Hmm, unfortunate that CI doesn't catch that... o_o


/**
* activate is the entrypoint for activating the extension.
Expand All @@ -15,6 +16,7 @@ export async function activate(ctx: vscode.ExtensionContext) {
ctx.subscriptions.push(
vscode.workspace.onDidChangeConfiguration(handleOnDidConfigChange)
);

await installBuf.execute();
}

Expand Down
Loading