diff --git a/README.md b/README.md index 7494f3ab..6418ba3f 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,28 @@ -# Ansible VS Code Extension -This extension adds language support for Ansible to VS Code. +# Ansible Language Server +This langauge server adds support for Ansible. ### Getting started 1. Install prerequisites: - latest [Visual Studio Code](https://code.visualstudio.com/) - [Node.js](https://nodejs.org/) v12.0.0 or higher + 2. Fork and clone this repository + 3. Install the dependencies ```bash cd ansible-language-server $ yarn install ``` + 4. Build the language server ```bash $ yarn run build ``` + 5. The new built server is now located in ./out/server/src/server.js. ```bash - node (Ansible Language Server Location)/out/server/src/server.js [--stdio] + node /out/server/src/server.js --stdio ``` ## Features @@ -125,4 +129,4 @@ any level (User, Remote, Workspace and/or Folder). ## Credit -Based on the good work done by [Tomasz Maciążek](https://github.com/tomaciazek/vscode-ansible) \ No newline at end of file +Based on the good work done by [Tomasz Maciążek](https://github.com/tomaciazek/vscode-ansible) diff --git a/package.json b/package.json index 1b621f08..05d762b8 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "displayName": "Ansible", "description": "Ansible language server", "license": "MIT", - "version": "0.1.0", + "version": "0.1.1", "contributors": [ { "name": "Tomasz Maciążek",