Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
Change to ES6 exports to attempt to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansedich committed Jun 13, 2018
1 parent 5fe579b commit 5c8f597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/locate/locate.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function filter(symbols, query, matcher) {
.uniq()
.value();
}
module.exports = class Locate {
export class Locate {
constructor(root, settings) {
this.settings = settings;
this.root = root;
Expand Down
2 changes: 1 addition & 1 deletion src/providers/intellisense.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as vscode from 'vscode';
import { ExtensionContext, SymbolKind, SymbolInformation } from 'vscode';
import * as Locate from '../locate/locate';
import { Locate } from '../locate/locate';

export function registerIntellisenseProvider(ctx: ExtensionContext) {
// for locate: if it's a project, use the root, othewise, don't bother
Expand Down

0 comments on commit 5c8f597

Please sign in to comment.