Skip to content

Commit

Permalink
chore: use my yaml language server fork
Browse files Browse the repository at this point in the history
I want to support openshift and different kubernetes version schemas.
Therefore, I use this fork until the [upstream
pr](redhat-developer/yaml-language-server#841) is merged.
  • Loading branch information
tricktron committed Mar 19, 2023
1 parent 2bc0153 commit 9519f67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
},
"extensionDependencies": [],
"scripts": {
"build": "yarn run clean && yarn run lint && yarn run vscode:prepublish",
"build": "yarn run clean && yarn run build-yaml-language-server && yarn run lint && yarn run vscode:prepublish",
"check-dependencies": "node ./scripts/check-dependencies.js",
"clean": "rimraf out && rimraf dist",
"compile": "webpack --mode none",
Expand All @@ -252,7 +252,8 @@
"vscode:prepublish": "webpack --mode production",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"test-compile": "yarn clean && tsc -p ./ && webpack --mode development",
"run-in-chromium": "npm run compile && vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
"run-in-chromium": "npm run compile && vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"build-yaml-language-server": "cd node_modules/yaml-language-server && yarn install && yarn build"
},
"devDependencies": {
"@types/chai": "^4.2.12",
Expand Down Expand Up @@ -298,7 +299,6 @@
"vscode-languageclient": "7.0.0",
"vscode-nls": "^3.2.1",
"vscode-uri": "^2.0.3",
"whatwg-fetch": "^3.6.2",
"yaml-language-server": "next"
"yaml-language-server": "tricktron/yaml-language-server#develop"
}
}

0 comments on commit 9519f67

Please sign in to comment.