Skip to content

Commit

Permalink
Patch to include "vscode-languageclient" package in dependencies se…
Browse files Browse the repository at this point in the history
…ction rather than `devDependencies`
  • Loading branch information
PranayAgarwal committed Nov 20, 2017
1 parent 7d45501 commit 2ba86ac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 22 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

See the full list of recent releases and features added on the [Github releases page](https://github.com/PranayAgarwal/vscode-hack/releases).

## v0.6.1 - 2017-11-19
- Patch to include "vscode-languageclient" package in `dependencies` section rather than `devDependencies`.

## v0.6.0 - 2017-11-19
- Experimental Language Server support:
- If you are running HHVM 3.23 or later, add `"hack.useLanguageServer": true` to your workspace config to start hh_client in Language Server mode (see [#15](https://github.com/PranayAgarwal/vscode-hack/issues/15) for more context).
Expand Down
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,11 @@ It is published in the Visual Studio Marketplace [here](https://marketplace.visu

## Latest releases

## v0.6.0
## v0.6.1
- Experimental Language Server support - If you are running HHVM 3.23 or later, add `"hack.useLanguageServer": true` to your workspace config to start hh_client in Language Server mode (see [#15](https://github.com/PranayAgarwal/vscode-hack/issues/15) for more context).
- Support for running against a containerized Hack typecheck server (see Docker section in README). Thanks [@beatscode](https://github.com/beatscode)!
- Fixed [#13](https://github.com/PranayAgarwal/vscode-hack/issues/13) - Running formatter removes last line of file if there is no trailing newline. Thanks [@beefsack](https://github.com/beefsack)!

### v0.5.0
- Added Code Actions to automatically suppress typechecker errors via HH_FIXME comments.

### v0.4.0
- Fixed document symbol outline (⇧⌘O) break in newer hh_client versions.
- Added a new setting to enable type coverage checking (now off by default).
- Updated Hack grammar for better syntax highlighting.
- Lots of performance improvements, mainly by refactoring the codebase to use async/await.
- Works best with HHVM 3.18 or later.

See the full list of releases and features added on the [Github releases page](https://github.com/PranayAgarwal/vscode-hack/releases) as well as the project [changelog](https://github.com/PranayAgarwal/vscode-hack/blob/master/CHANGELOG.md).

## Features
Expand Down
10 changes: 3 additions & 7 deletions package-lock.json

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

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-hack",
"version": "0.6.0",
"version": "0.6.1",
"publisher": "pranayagarwal",
"engines": {
"vscode": "^1.15.0"
Expand Down Expand Up @@ -108,14 +108,16 @@
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"lint": "tslint --force -p ."
},
"dependencies": {
"vscode-languageclient": "^3.5.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"cson": "^4.1.0",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.6.1",
"vscode": "^1.1.7",
"vscode-languageclient": "^3.5.0"
"vscode": "^1.1.7"
}
}
}

0 comments on commit 2ba86ac

Please sign in to comment.