Skip to content

Commit 9ef1a47

Browse files
author
James Pogran
authored
Merge pull request #372 from glennsarti/add-sidecar
(GH-397) Use the Language Server with sidecar (0.15.0
2 parents 1599bf5 + e92ad91 commit 9ef1a47

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1313

1414
### Changed
1515

16+
- ([GH-397](https://github.com/lingua-pupuli/puppet-vscode/issues/397)) Updated Puppet Editor Services to version 0.15.0. Change Log is at [https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.15.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.15.0)
1617
- ([GH-373](https://github.com/lingua-pupuli/puppet-vscode/issues/373)) Refactor commands and providers to features
18+
- ([GH-351](https://github.com/lingua-pupuli/puppet-vscode/issues/351)) Updated Puppet Editor Services to version 0.14.0. Change Log is at [https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.14.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.15.0)
1719
- ([GH-323](https://github.com/lingua-pupuli/puppet-vscode/issues/323)) Update readme with gif examples
1820

1921
### Deprecated

editor-services.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"release": "0.14.0"
2+
"release": "0.15.0"
33
}

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ gulp.task('vendor_editor_services', function (callback) {
105105
return gulp.src([path.join(config.directory,'lib/**/*'),
106106
path.join(config.directory,'vendor/**/*'),
107107
path.join(config.directory,'puppet-debugserver'),
108-
path.join(config.directory,'puppet-languageserver')
108+
path.join(config.directory,'puppet-languageserver'),
109+
path.join(config.directory,'puppet-languageserver-sidecar')
109110
], { base: path.join(config.directory) })
110111
.pipe(gulp.dest('./vendor/languageserver'));
111112
}

0 commit comments

Comments
 (0)