We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28549d9 commit 4104b0cCopy full SHA for 4104b0c
.gitignore
@@ -9,3 +9,4 @@ yarn-error.log
9
coverage
10
lib/
11
eslint-result.sarif
12
+yarn.lock
Dockerfile
@@ -4,7 +4,7 @@ WORKDIR /yaml-language-server
4
5
COPY . .
6
7
-RUN npm run install && \
+RUN npm install && \
8
npm run build
ENTRYPOINT [ "node", "./out/server/src/server.js" ]
README.md
@@ -400,7 +400,7 @@ This repository only contains the server implementation. Here are some known cli
400
3. Install the dependencies
401
```bash
402
cd yaml-language-server
403
- $ npm run install
+ $ npm install
404
```
405
4. Build the language server
406
0 commit comments