diff options
author | Luna <imlvnaa@gmail.com> | 2023-05-31 17:12:37 +0000 |
---|---|---|
committer | Ven <ven@noreply.codeberg.org> | 2023-05-31 17:12:37 +0000 |
commit | 503d49d295f1e1bfbcdd890e1abc345f326bf95c (patch) | |
tree | 553b3e01cf037e5af97bf28fcfe13a9b072621c0 | |
parent | 137b79d95b8c3f946a575dbfaf8f35e266b16abd (diff) | |
download | Vencord-503d49d295f1e1bfbcdd890e1abc345f326bf95c.tar.gz Vencord-503d49d295f1e1bfbcdd890e1abc345f326bf95c.tar.bz2 Vencord-503d49d295f1e1bfbcdd890e1abc345f326bf95c.zip |
Add codeberg to gitlens and add build tasks (#3)
It needed to be added inorder for gitlens to recognise the remote as a gitea instance
without, it wouldnt be able to open branches/specific commits correctly
and build tasks are just for ease of development
(teeny weeny pr bc im not gonna do anything else with this branch)
Co-authored-by: Luna R <imlvnaa@gmail.com>
Reviewed-on: https://codeberg.org/Ven/cord/pulls/3
Co-authored-by: Luna <imlvnaa@gmail.com>
Co-committed-by: Luna <imlvnaa@gmail.com>
-rw-r--r-- | .vscode/settings.json | 9 | ||||
-rw-r--r-- | .vscode/tasks.json | 25 |
2 files changed, 33 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index c0b2045..426ff68 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,5 +12,12 @@ "javascript.format.semicolons": "insert", "typescript.format.semicolons": "insert", "typescript.preferences.quoteStyle": "double", - "javascript.preferences.quoteStyle": "double" + "javascript.preferences.quoteStyle": "double", + + "gitlens.remotes": [ + { + "domain": "codeberg.org", + "type": "Gitea" + } + ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..5b160cb --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Build", + "type": "shell", + "command": "pnpm build", + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "Watch", + "type": "shell", + "command": "pnpm watch", + "problemMatcher": [], + "group": { + "kind": "build" + } + } + ] +}
\ No newline at end of file |