Add dependency on vscode.git and add type definitions

Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
Sanjula Ganepola
2024-11-21 19:16:03 -05:00
parent e872ff00a0
commit 8330caaef9
2 changed files with 434 additions and 1 deletions

View File

@@ -25,6 +25,9 @@
"categories": [
"Other"
],
"extensionDependencies": [
"vscode.git"
],
"engines": {
"vscode": "^1.93.0"
},
@@ -249,6 +252,12 @@
"title": "Hide",
"icon": "$(eye-closed)"
},
{
"category": "GitHub Local Actions",
"command": "githubLocalActions.importFromGithub",
"title": "Import from GitHub",
"icon": "$(github)"
},
{
"category": "GitHub Local Actions",
"command": "githubLocalActions.editSetting",
@@ -351,6 +360,10 @@
"command": "githubLocalActions.hide",
"when": "never"
},
{
"command": "githubLocalActions.importFromGithub",
"when": "never"
},
{
"command": "githubLocalActions.editSetting",
"when": "never"
@@ -492,6 +505,11 @@
"when": "view == settings && viewItem =~ /^githubLocalActions.secret(?!s)_show.*/",
"group": "inline@0"
},
{
"command": "githubLocalActions.importFromGithub",
"when": "view == settings && viewItem =~ /^githubLocalActions.variables.*/",
"group": "inline@0"
},
{
"command": "githubLocalActions.editSetting",
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input|runner)(?!s).*/",
@@ -554,4 +572,4 @@
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}
}