diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-18 18:25:49 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-18 18:27:05 -0500 |
| commit | 968d50842512a007dc9c2e4ae31b1970fdc6e6a2 (patch) | |
| tree | 240d8b019a6694b6722ea4cfc3576e3f5b1b4bd0 | |
| parent | 6e077e71fa27dbb993a49cda211c5385a76ca6aa (diff) | |
Rename project to deno_std
Move typescript files to net/
Original: https://github.com/denoland/deno_std/commit/99e276eb89fbe0003bfa8d9e7b907ff3ef19ee47
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | net/bufio.ts (renamed from bufio.ts) | 0 | ||||
| -rw-r--r-- | net/bufio_test.ts (renamed from bufio_test.ts) | 0 | ||||
| -rwxr-xr-x | net/file_server.ts (renamed from file_server.ts) | 0 | ||||
| -rw-r--r-- | net/file_server_test.ts (renamed from file_server_test.ts) | 0 | ||||
| -rw-r--r-- | net/http.ts (renamed from http.ts) | 0 | ||||
| -rw-r--r-- | net/http_bench.ts (renamed from http_bench.ts) | 0 | ||||
| -rw-r--r-- | net/http_status.ts (renamed from http_status.ts) | 0 | ||||
| -rw-r--r-- | net/http_test.ts (renamed from http_test.ts) | 0 | ||||
| -rw-r--r-- | net/iotest.ts (renamed from iotest.ts) | 0 | ||||
| -rw-r--r-- | net/textproto.ts (renamed from textproto.ts) | 0 | ||||
| -rw-r--r-- | net/textproto_test.ts (renamed from textproto_test.ts) | 0 | ||||
| -rw-r--r-- | net/util.ts (renamed from util.ts) | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | test.ts | 13 |
14 files changed, 8 insertions, 9 deletions
@@ -1,6 +1,6 @@ -# Deno Networking Libraries +# Deno Standard Modules -[](https://travis-ci.com/denoland/deno_net) +[](https://travis-ci.com/denoland/deno_std) Usage: diff --git a/bufio.ts b/net/bufio.ts index b412cbce8..b412cbce8 100644 --- a/bufio.ts +++ b/net/bufio.ts diff --git a/bufio_test.ts b/net/bufio_test.ts index 19954bdf6..19954bdf6 100644 --- a/bufio_test.ts +++ b/net/bufio_test.ts diff --git a/file_server.ts b/net/file_server.ts index bd1c52b88..bd1c52b88 100755 --- a/file_server.ts +++ b/net/file_server.ts diff --git a/file_server_test.ts b/net/file_server_test.ts index a04ced7e5..a04ced7e5 100644 --- a/file_server_test.ts +++ b/net/file_server_test.ts diff --git a/http_bench.ts b/net/http_bench.ts index 8e1e24ad6..8e1e24ad6 100644 --- a/http_bench.ts +++ b/net/http_bench.ts diff --git a/http_status.ts b/net/http_status.ts index a3006d319..a3006d319 100644 --- a/http_status.ts +++ b/net/http_status.ts diff --git a/http_test.ts b/net/http_test.ts index cdb7f8303..cdb7f8303 100644 --- a/http_test.ts +++ b/net/http_test.ts diff --git a/iotest.ts b/net/iotest.ts index e3a42f58a..e3a42f58a 100644 --- a/iotest.ts +++ b/net/iotest.ts diff --git a/textproto.ts b/net/textproto.ts index 342d74b33..342d74b33 100644 --- a/textproto.ts +++ b/net/textproto.ts diff --git a/textproto_test.ts b/net/textproto_test.ts index 25c12b0e8..25c12b0e8 100644 --- a/textproto_test.ts +++ b/net/textproto_test.ts @@ -1,13 +1,14 @@ +#!/usr/bin/env deno --allow-run --allow-net import { run } from "deno"; -import "./bufio_test.ts"; -import "./http_test.ts"; -import "./textproto_test.ts"; -import { runTests, completePromise } from "./file_server_test.ts"; +import "net/bufio_test.ts"; +import "net/http_test.ts"; +import "net/textproto_test.ts"; +import { runTests, completePromise } from "net/file_server_test.ts"; // file server test const fileServer = run({ - args: ["deno", "--allow-net", "file_server.ts", "."] + args: ["deno", "--allow-net", "net/file_server.ts", "."] }); // I am also too lazy to do this properly LOL runTests(new Promise(res => setTimeout(res, 5000))); @@ -15,5 +16,3 @@ runTests(new Promise(res => setTimeout(res, 5000))); await completePromise; fileServer.close(); })(); - -// TODO import "./http_test.ts"; |
