diff options
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | .vscode/tasks.json | 25 |
2 files changed, 3 insertions, 25 deletions
diff --git a/.gitmodules b/.gitmodules index 58a41fcb6..3df35adb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -33,3 +33,6 @@ path = src/deps/lol-html url = https://github.com/cloudflare/lol-html ignore = dirty +[submodule "src/deps/uws"] + path = src/deps/uws + url = https://github.com/uNetworking/uWebSockets diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 43bda5eea..bf08fb436 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -29,31 +29,6 @@ "showReuseMessage": false, "clear": true } - }, - { - "label": "test", - "type": "shell", - "command": "zig", - "args": [ - "test", - "${file}", - "--main-pkg-path", - "${workspaceFolder}", - "-femit-bin=${workspaceFolder}/zig-out/bin/test", - ";", - "true" - ], - - "group": { - "kind": "test", - "isDefault": true - }, - "presentation": { - "showReuseMessage": false, - "clear": true, - "panel": "new", - "reveal": "always" - } } ] } |