mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 21:50:00 -05:00
deno_net -> deno_std rename
Also don't format external js/deps
This commit is contained in:
parent
c002ea10fa
commit
32e1641628
5 changed files with 7 additions and 7 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -4,6 +4,6 @@
|
||||||
[submodule "build"]
|
[submodule "build"]
|
||||||
path = build
|
path = build
|
||||||
url = https://github.com/denoland/chromium_build.git
|
url = https://github.com/denoland/chromium_build.git
|
||||||
[submodule "js/deps/https/deno.land/x/net"]
|
[submodule "js/deps/https/deno.land/x/std"]
|
||||||
path = js/deps/https/deno.land/x/net
|
path = js/deps/https/deno.land/x/std
|
||||||
url = https://github.com/denoland/deno_net.git
|
url = https://github.com/denoland/deno_std.git
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 958dadc8752f1aface8cff39c56011b016fb1460
|
|
1
js/deps/https/deno.land/x/std
Submodule
1
js/deps/https/deno.land/x/std
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 731f03829cc7f4a29753a5a80156b22166233bcf
|
|
@ -41,7 +41,7 @@ qrun(["node", prettier, "--write", "--loglevel=error"] + ["rollup.config.js"] +
|
||||||
glob("*.json") + glob("*.md") +
|
glob("*.json") + glob("*.md") +
|
||||||
find_exts([".github", "js", "tests", "tools", "website"],
|
find_exts([".github", "js", "tests", "tools", "website"],
|
||||||
[".js", ".json", ".ts", ".md"],
|
[".js", ".json", ".ts", ".md"],
|
||||||
skip=["tools/clang"]))
|
skip=["tools/clang", "js/deps"]))
|
||||||
|
|
||||||
print "rustfmt"
|
print "rustfmt"
|
||||||
qrun([
|
qrun([
|
||||||
|
|
|
@ -18,8 +18,8 @@ def deno_http_benchmark(deno_exe):
|
||||||
|
|
||||||
def deno_net_http_benchmark(deno_exe):
|
def deno_net_http_benchmark(deno_exe):
|
||||||
deno_cmd = [
|
deno_cmd = [
|
||||||
deno_exe, "--allow-net", "js/deps/https/deno.land/x/net/http_bench.ts",
|
deno_exe, "--allow-net",
|
||||||
ADDR
|
"js/deps/https/deno.land/x/std/net/http_bench.ts", ADDR
|
||||||
]
|
]
|
||||||
print "http_benchmark testing DENO using net/http."
|
print "http_benchmark testing DENO using net/http."
|
||||||
return run(
|
return run(
|
||||||
|
|
Loading…
Add table
Reference in a new issue