diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 18:22:14 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-24 11:31:17 -0500 |
commit | 32e1641628a94c89366e037ff57f8acb4fc0f2fe (patch) | |
tree | 2e32fd80e9975920291db368a6a93bc19d3efb7e /tools | |
parent | c002ea10fa45e3c6fdb70a4c3b3add2a081b0fa5 (diff) |
deno_net -> deno_std rename
Also don't format external js/deps
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/format.py | 2 | ||||
-rwxr-xr-x | tools/http_benchmark.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/format.py b/tools/format.py index d0f2dbab4..79282618d 100755 --- a/tools/format.py +++ b/tools/format.py @@ -41,7 +41,7 @@ qrun(["node", prettier, "--write", "--loglevel=error"] + ["rollup.config.js"] + glob("*.json") + glob("*.md") + find_exts([".github", "js", "tests", "tools", "website"], [".js", ".json", ".ts", ".md"], - skip=["tools/clang"])) + skip=["tools/clang", "js/deps"])) print "rustfmt" qrun([ diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py index 2ff34b831..05e54f173 100755 --- a/tools/http_benchmark.py +++ b/tools/http_benchmark.py @@ -18,8 +18,8 @@ def deno_http_benchmark(deno_exe): def deno_net_http_benchmark(deno_exe): deno_cmd = [ - deno_exe, "--allow-net", "js/deps/https/deno.land/x/net/http_bench.ts", - ADDR + deno_exe, "--allow-net", + "js/deps/https/deno.land/x/std/net/http_bench.ts", ADDR ] print "http_benchmark testing DENO using net/http." return run( |