Skip to content

Commit

Permalink
Update for extension error
Browse files Browse the repository at this point in the history
  • Loading branch information
sgwilym committed Jul 31, 2021
1 parent f646b52 commit 76d7d14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions deno.novaextension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.3.2

- Quick update to fix a submission error.

## v0.3.1

- Refactored task templates so that they succeed more often and are easier to manage!
Expand Down
2 changes: 1 addition & 1 deletion deno.novaextension/extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Deno",
"organization": "Sam Gwilym",
"description": "Deno runtime support for Nova.",
"version": "0.3.1",
"version": "0.3.2",
"categories": ["languages", "formatters", "issues", "completions", "tasks"],
"repository": "https://github.com/sgwilym/nova-deno",
"bugs": "https://github.com/sgwilym/nova-deno/issues",
Expand Down
3 changes: 1 addition & 2 deletions src/nova_deno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ const formatOnSaveKey = "co.gwil.deno.config.formatDocumentOnSave";
let client: LanguageClient | null = null;
const compositeDisposable = new CompositeDisposable();

export async function activate() {

export function activate() {
client = new LanguageClient(
"co.gwil.deno",
"Deno Language Server",
Expand Down

0 comments on commit 76d7d14

Please sign in to comment.