Skip to content

Commit c1e0ea9

Browse files
committed
chore: update to std 0.131.0, media_types 3.0.2, dnt 0.22.0
1 parent 01bed5d commit c1e0ea9

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

_build_npm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @module
99
*/
1010

11-
import { build, emptyDir } from "https://deno.land/x/dnt@0.21.2/mod.ts";
12-
import { copy } from "https://deno.land/std@0.128.0/fs/copy.ts";
11+
import { build, emptyDir } from "https://deno.land/x/dnt@0.22.0/mod.ts";
12+
import { copy } from "https://deno.land/std@0.131.0/fs/copy.ts";
1313

1414
async function start() {
1515
await emptyDir("./npm");

deps.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ export {
88
concat,
99
copy as copyBytes,
1010
equals,
11-
} from "https://deno.land/std@0.128.0/bytes/mod.ts";
12-
export * as base64 from "https://deno.land/std@0.128.0/encoding/base64.ts";
11+
} from "https://deno.land/std@0.131.0/bytes/mod.ts";
12+
export * as base64 from "https://deno.land/std@0.131.0/encoding/base64.ts";
1313
export {
1414
Status,
1515
STATUS_TEXT,
16-
} from "https://deno.land/std@0.128.0/http/http_status.ts";
17-
export { LimitedReader } from "https://deno.land/std@0.128.0/io/readers.ts";
16+
} from "https://deno.land/std@0.131.0/http/http_status.ts";
17+
export { LimitedReader } from "https://deno.land/std@0.131.0/io/readers.ts";
1818
export {
1919
readAll,
2020
readerFromStreamReader,
2121
writeAll,
22-
} from "https://deno.land/std@0.128.0/streams/conversion.ts";
22+
} from "https://deno.land/std@0.131.0/streams/conversion.ts";
2323
export {
2424
basename,
2525
extname,
@@ -28,15 +28,15 @@ export {
2828
normalize,
2929
parse,
3030
sep,
31-
} from "https://deno.land/std@0.128.0/path/mod.ts";
31+
} from "https://deno.land/std@0.131.0/path/mod.ts";
3232

3333
// 3rd party dependencies
3434

3535
export {
3636
contentType,
3737
extension,
3838
lookup,
39-
} from "https://deno.land/x/media_types@v2.12.3/mod.ts";
39+
} from "https://deno.land/x/media_types@v3.0.2/mod.ts";
4040
export {
4141
compile,
4242
match as pathMatch,

examples/closeServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
cyan,
99
green,
1010
yellow,
11-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
11+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1212

1313
import { Application, Context, Router, Status } from "../mod.ts";
1414

examples/cookieServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
cyan,
99
green,
1010
yellow,
11-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
11+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1212

1313
import { Application } from "../mod.ts";
1414

examples/echoServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
cyan,
99
green,
1010
yellow,
11-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
11+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1212

1313
import { Application } from "../mod.ts";
1414

examples/httpsServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
cyan,
1414
green,
1515
yellow,
16-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
16+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1717

1818
import { Application } from "../mod.ts";
1919

examples/proxyServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
green,
99
red,
1010
yellow,
11-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
11+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1212

1313
import { Application, HttpError, proxy, Status } from "../mod.ts";
1414

examples/readerServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55

66
// Importing some console colors
7-
import { bold, yellow } from "https://deno.land/std@0.128.0/fmt/colors.ts";
8-
import { StringReader } from "https://deno.land/std@0.128.0/io/readers.ts";
7+
import { bold, yellow } from "https://deno.land/std@0.131.0/fmt/colors.ts";
8+
import { StringReader } from "https://deno.land/std@0.131.0/io/readers.ts";
99

1010
import { Application } from "../mod.ts";
1111

examples/routingServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
cyan,
99
green,
1010
yellow,
11-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
11+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1212

1313
import {
1414
Application,

examples/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
cyan,
1010
green,
1111
yellow,
12-
} from "https://deno.land/std@0.128.0/fmt/colors.ts";
12+
} from "https://deno.land/std@0.131.0/fmt/colors.ts";
1313

1414
import { Application } from "../mod.ts";
1515

0 commit comments

Comments
 (0)