diff options
author | 2022-03-20 04:38:41 -0700 | |
---|---|---|
committer | 2022-03-20 04:38:41 -0700 | |
commit | 0b5a8057f2f16c70a97ebab11c4bca67ecc37d94 (patch) | |
tree | 6bd0105d6fa4e9e9cba985c5df5f6eb53f52c7a7 | |
parent | b0a397280e81dc8a2642dd9f7257bdc987bdc6e1 (diff) | |
download | bun-0b5a8057f2f16c70a97ebab11c4bca67ecc37d94.tar.gz bun-0b5a8057f2f16c70a97ebab11c4bca67ecc37d94.tar.zst bun-0b5a8057f2f16c70a97ebab11c4bca67ecc37d94.zip |
add new module
-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" - } } ] } |