diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-05-23 22:01:35 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2021-05-23 22:01:35 +0200 |
| commit | afee18939f2c1b11b1724c1ff69df5d8019a9a6e (patch) | |
| tree | f0a43c9dfb1b1ac53ee2ced6d56a04083148de9c /editors | |
| parent | 8fd54ff1c06c9a99398e834fb188c42b1bb9f8cb (diff) | |
new extension version
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/package.json | 2 | ||||
| -rw-r--r-- | editors/vscode/src/extension.ts | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 0b3e8c0..98bf48a 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -7,7 +7,7 @@ "type": "git", "url": "git://github.com/DanielGavin/ols.git" }, - "version": "0.0.7", + "version": "0.0.8", "engines": { "vscode": "^1.55.2" }, diff --git a/editors/vscode/src/extension.ts b/editors/vscode/src/extension.ts index 056e8ea..ded677c 100644 --- a/editors/vscode/src/extension.ts +++ b/editors/vscode/src/extension.ts @@ -201,9 +201,6 @@ export async function parseOlsFile(config: Config, file: string) { fs.readFile(file).then((data) => { const conf = JSON.parse(data.toString()); config.collections = conf.collections; - }, - (rejected) => { - log.error("failed to read ols file: ", rejected); }); } |