Skip to content

Commit

Permalink
update export
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Mar 24, 2024
1 parent 64ab777 commit d9afbd0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { convert } from './nlf';
import { createTask } from './task';
import { updateDiagnostics } from './diagnostics';

async function activate(context: ExtensionContext): Promise<void> {
export async function activate(context: ExtensionContext): Promise<void> {
context.subscriptions.push(
// TextEditor Commands
commands.registerTextEditorCommand('extension.nsis.compile', async () => {
Expand All @@ -32,7 +32,7 @@ async function activate(context: ExtensionContext): Promise<void> {
})
);

//Global Commands
// Global Commands
context.subscriptions.push(
commands.registerCommand('extension.nsis.show-version', async () => {
return await showVersion();
Expand Down Expand Up @@ -88,5 +88,3 @@ async function activate(context: ExtensionContext): Promise<void> {
}
}));
}

export { activate };

0 comments on commit d9afbd0

Please sign in to comment.