Skip to content

Commit

Permalink
Fix #205 Replaced existing code with a new npm module
Browse files Browse the repository at this point in the history
The code for the analysis and processing of a Dockerfile for the
returning of information has been refactored out into a new
dockerfile-language-service module.

This module now only contains the necessary code for the language
server process itself. The module will forward the requests from the
client to the language service module and also forward the responses
from the language service module back to the client.

Signed-off-by: Remy Suen <[email protected]>
  • Loading branch information
rcjsuen committed Feb 17, 2018
1 parent 47cee5c commit 36a9d68
Show file tree
Hide file tree
Showing 29 changed files with 31 additions and 18,555 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased]
### Added
- create dependency on the dockerfile-language-service module ([#205](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/205))
- textDocument/codeAction
- create docker.command.removeEmptyContinuationLine to remove empty continuation lines in instructions that span multiple lines ([#203](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/203))
- textDocument/documentLink
Expand All @@ -21,6 +22,9 @@ All notable changes to this project will be documented in this file.
- allow decimal values for HEALTHCHECK duration flags ([rcjsuen/dockerfile-utils#19](https://github.com/rcjsuen/dockerfile-utils/issues/19))
- warn if STOPSIGNAL uses invalid variables for its argument ([rcjsuen/dockerfile-utils#11](https://github.com/rcjsuen/dockerfile-utils/issues/11))

### Removed
- remove document analysis and processing code and tests in favor of the dockerfile-language-service module ([#205](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/205))

## [0.0.13] - 2018-01-19
### Added
- create dependency on the dockerfile-utils module ([#79](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/79))
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
},
"dependencies": {
"dockerfile-ast": "0.0.3",
"dockerfile-language-service": "0.0.1",
"dockerfile-utils": "0.0.6",
"vscode-languageserver": "^3.5.0-next.1"
},
Expand Down
76 changes: 0 additions & 76 deletions src/docker.ts

This file was deleted.

Loading

0 comments on commit 36a9d68

Please sign in to comment.