Skip to content
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.

Commit

Permalink
2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Sep 4, 2019
1 parent 22dcdaf commit 603e672
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monaco-json",
"version": "2.5.1",
"version": "2.6.0",
"description": "JSON plugin for the Monaco Editor",
"scripts": {
"compile": "mrmdir ./out && tsc -p ./src/tsconfig.json && tsc -p ./src/tsconfig.esm.json",
Expand All @@ -20,7 +20,7 @@
},
"devDependencies": {
"jsonc-parser": "^2.0.3",
"monaco-editor-core": "0.16.1",
"monaco-editor-core": "0.18.0",
"monaco-languages": "1.7.0",
"monaco-plugin-helpers": "^1.0.2",
"requirejs": "^2.3.6",
Expand Down
3 changes: 2 additions & 1 deletion src/languageFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ export class DocumentSymbolAdapter implements monaco.languages.DocumentSymbolPro
containerName: item.containerName,
kind: toSymbolKind(item.kind),
range: toRange(item.location.range),
selectionRange: toRange(item.location.range)
selectionRange: toRange(item.location.range),
tags: []
}));
});
}
Expand Down

0 comments on commit 603e672

Please sign in to comment.