Skip to content

Commit

Permalink
fix jenkins build error
Browse files Browse the repository at this point in the history
Signed-off-by: Mohit Suman <[email protected]>
  • Loading branch information
mohitsuman committed Dec 2, 2022
1 parent 87f20c8 commit 37d806c
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 19 deletions.
65 changes: 54 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@
"@types/markdown-it": "^10.0.2",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/node": "^18.11.10",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/pluralize": "^0.0.29",
Expand All @@ -1093,8 +1093,8 @@
"@types/tmp": "0.1.0",
"@types/validator": "^10.11.2",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"base64-inline-loader": "^2.0.1",
"chai": "^4.2.0",
"code-line-numbers": "0.0.12",
Expand All @@ -1105,8 +1105,8 @@
"cytoscape-dagre": "^2.2.2",
"cytoscape-popper": "^2.0.0",
"decache": "^4.5.1",
"eslint": "^8.26.0",
"eslint-plugin-header": "^3.0.0",
"eslint": "^8.28.0",
"eslint-plugin-header": "^3.1.1",
"file-loader": "^6.2.0",
"glob": "^7.1.3",
"highlight.js": "^10.4.1",
Expand Down Expand Up @@ -1136,6 +1136,7 @@
"dependencies": {
"@kubernetes/client-node": "^0.12.2",
"@material-ui/core": "^4.12.4",
"@mui/core": "^5.0.0-alpha.54",
"@mui/material": "^5.10.9",
"@mui/styles": "^5.10.10",
"@redhat-developer/alizer": "^0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/debugger/debugExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class DebugExplorer implements TreeDataProvider<TektonNode>, Disposable {
this.treeView.reveal(item);
}

getSelection(): TektonNode[] | undefined {
getSelection(): any {
return this.treeView.selection;
}

Expand Down
3 changes: 2 additions & 1 deletion src/pipeline/customTektonExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ export class CustomTektonExplorer implements TreeDataProvider<TektonNode>, Dispo
return this.treeView.visible;
}

getSelection(): TektonNode[] | undefined {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
getSelection(): any {
return this.treeView.selection;
}

Expand Down
3 changes: 2 additions & 1 deletion src/pipeline/pipelineExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ export class PipelineExplorer implements TreeDataProvider<TektonNode>, Disposabl
this.treeView.reveal(item);
}

getSelection(): TektonNode[] | undefined {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
getSelection(): any {
return this.treeView.selection;
}

Expand Down

0 comments on commit 37d806c

Please sign in to comment.