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 Feb 24, 2023
1 parent aaf9c53 commit f37b532
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,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 @@ -247,7 +247,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 @@ -292,6 +293,6 @@
"vscode-languageclient": "7.0.0",
"vscode-nls": "^3.2.1",
"vscode-uri": "^2.0.3",
"yaml-language-server": "next"
"yaml-language-server": "tricktron/yaml-language-server#develop"
}
}

0 comments on commit f37b532

Please sign in to comment.