Skip to content

Commit

Permalink
feat(extension): add async/await when run runCSSExtractor function
Browse files Browse the repository at this point in the history
  • Loading branch information
kubosho committed Jun 24, 2020
1 parent 764e495 commit ad1855c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ExtensionContext } from 'vscode';
import { runCSSExtractor } from './commands';

export function activate(context: ExtensionContext) {
context.subscriptions.push(runCSSExtractor());
export async function activate(context: ExtensionContext) {
context.subscriptions.push(await runCSSExtractor());
}

export function deactivate() {}

0 comments on commit ad1855c

Please sign in to comment.