diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-29 21:18:18 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 21:18:18 +1100 |
commit | b0482400c96476946514f03f27f139dd505b06fb (patch) | |
tree | bbca9156c79a5de1e42354b6af5ab73c88ffc05e /cli/tests/module_graph/https_deno.land-std-http-server.ts | |
parent | bfce376c685694569be2cbf0716dd58f898c111e (diff) |
fix(cli): make hashes of tsconfig deterministic (#8167)
Fixes #8163
Diffstat (limited to 'cli/tests/module_graph/https_deno.land-std-http-server.ts')
-rw-r--r-- | cli/tests/module_graph/https_deno.land-std-http-server.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/https_deno.land-std-http-server.ts b/cli/tests/module_graph/https_deno.land-std-http-server.ts new file mode 100644 index 000000000..0b3c995ec --- /dev/null +++ b/cli/tests/module_graph/https_deno.land-std-http-server.ts @@ -0,0 +1,5 @@ +export class ServerRequest { + respond(value: { body: string }) { + console.log(value); + } +} |