Skip to content

Upgrade tree-sitter dependencies #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"private": true,
"scripts": {
"clean": "rm -rf *.log */*.log */out node_modules vscode-client/node_modules server/node_modules",
"postinstall": "cd server && yarn install && cd ../vscode-client && yarn install && cd ..",
"compile": "yarn run compile:server && yarn run compile:client",
"compile:client": "cd vscode-client && yarn run compile",
Expand All @@ -27,6 +28,9 @@
"typescript": "^2.8.1",
"vscode-languageserver": "^4.1.1"
},
"resolutions": {
"sane": "^3.0.2"
},
"jest": {
"testEnvironment": "node",
"timers": "fake",
Expand Down
9 changes: 9 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Bash Language Server

## 1.5.5

* Upgrade `tree-sitter` from `0.13.5` to `0.13.22`
* Upgrade `tree-sitter-bash` from `0.13.3` to `0.13.7`

## 1.5.4

* Fix explain shell configuration issue (https://github.com/mads-hartmann/bash-language-server/issues/80)

## 1.5.3

* Support for showing warning for missing nodes
Expand Down
6 changes: 3 additions & 3 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A language server for Bash",
"author": "Mads Hartmann",
"license": "MIT",
"version": "1.5.4",
"version": "1.5.5",
"publisher": "mads-hartmann",
"main": "out/server.js",
"bin": {
Expand All @@ -20,8 +20,8 @@
"glob": "^7.1.2",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"tree-sitter": "^0.13.5",
"tree-sitter-bash": "^0.13.3",
"tree-sitter": "^0.13.22",
"tree-sitter-bash": "^0.13.7",
"turndown": "^4.0.2",
"urijs": "^1.19.1",
"vscode-languageserver": "^4.1.1"
Expand Down
Loading