* feat(extension.ts): add support for creating a pull request in Gitea

* feat(extension.ts): add status bar icon for creating a pull request
* feat(extension.ts): implement function to create a Gitea pull request
* feat(extension.ts): implement function to add status bar icon
This commit is contained in:
2024-10-20 20:17:35 +02:00
parent 8d53bc17ed
commit 6822001ae8
3 changed files with 212 additions and 2 deletions

View File

@ -13,6 +13,11 @@
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "gitea.createPullRequest",
"title": "Gitea: Create Pull Request",
"category": "Gitea"
},
{
"command": "gitea.authenticate",
"title": "Gitea: Authenticate"
@ -67,6 +72,7 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.7.7"
"axios": "^1.7.7",
"open": "^10.1.0"
}
}