Skip to content

Commit

Permalink
deps: deno@v1.26.2, deno_std@v0.160.0 (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Oct 18, 2022
1 parent bd2fdb1 commit 199aa6f
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .denov
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.26.0
v1.26.2
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "deno test --allow-net --allow-read=tests --allow-write=tests/tmp --allow-run=redis-server,redis-cli ./tests",
"test:doc": "deno test --doc --no-run --import-map=import_map.test.json",
"make_mod": "deno run --allow-read --allow-write --allow-run tools/make_mod.ts",
"dlink": "deno run --allow-read=modules.json,modules-lock.json,vendor --allow-write=modules-lock.json,vendor --allow-net=deno.land https://deno.land/x/dlink@v0.8.9/dlink.ts && deno fmt modules-lock.json",
"dlink": "deno run --allow-read=modules.json,modules-lock.json,vendor --allow-write=modules-lock.json,vendor --allow-net=deno.land https://deno.land/x/dlink@v0.8.9/dlink.ts && deno fmt modules-lock.json vendor",
"bench:deno-redis": "deno run --unstable --allow-net=127.0.0.1:6379 --allow-read --allow-env --allow-write=tmp --import-map=benchmark/import_map.json benchmark/deno-redis.ts",
"bench:ioredis": "node benchmark/ioredis.js"
}
Expand Down
4 changes: 2 additions & 2 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"https://deno.land/std": {
"version": "@0.158.0",
"version": "@0.160.0",
"modules": [
"/async/deferred.ts",
"/async/delay.ts",
"/node/path.ts",
"/testing/asserts.ts",
"/testing/bdd.ts",
"/io/buffer.ts",
"/io/util.ts"
"/streams/conversion.ts"
]
},
"https://cdn.skypack.dev/lodash-es": {
Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"https://deno.land/std": {
"version": "@0.158.0",
"version": "@0.160.0",
"modules": [
"/async/deferred.ts",
"/async/delay.ts",
"/node/path.ts",
"/testing/asserts.ts",
"/testing/bdd.ts",
"/io/buffer.ts",
"/io/util.ts"
"/streams/conversion.ts"
]
},
"https://cdn.skypack.dev/lodash-es": {
Expand Down
2 changes: 1 addition & 1 deletion tests/cluster/test_util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { nextPort, startRedis, stopRedis } from "../test_util.ts";
import type { TestServer } from "../test_util.ts";
import { readAll } from "../../vendor/https/deno.land/std/io/util.ts";
import { readAll } from "../../vendor/https/deno.land/std/streams/conversion.ts";
import { delay } from "../../vendor/https/deno.land/std/async/delay.ts";

export interface TestCluster {
Expand Down
5 changes: 4 additions & 1 deletion tools/make_mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env deno run --allow-read --allow-write --allow-run

import { readAll, writeAll } from "../vendor/https/deno.land/std/io/util.ts";
import {
readAll,
writeAll,
} from "../vendor/https/deno.land/std/streams/conversion.ts";

const encoder = new TextEncoder();
const decoder = new TextDecoder();
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/deferred.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.158.0/async/deferred.ts";
export * from "https://deno.land/std@0.160.0/async/deferred.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/delay.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.158.0/async/delay.ts";
export * from "https://deno.land/std@0.160.0/async/delay.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/buffer.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.158.0/io/buffer.ts";
export * from "https://deno.land/std@0.160.0/io/buffer.ts";
1 change: 0 additions & 1 deletion vendor/https/deno.land/std/io/util.ts

This file was deleted.

4 changes: 2 additions & 2 deletions vendor/https/deno.land/std/node/path.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.158.0/node/path.ts";
import { default as dew } from "https://deno.land/std@0.158.0/node/path.ts";
export * from "https://deno.land/std@0.160.0/node/path.ts";
import { default as dew } from "https://deno.land/std@0.160.0/node/path.ts";
export default dew;
1 change: 1 addition & 0 deletions vendor/https/deno.land/std/streams/conversion.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/std@0.160.0/streams/conversion.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.158.0/testing/asserts.ts";
export * from "https://deno.land/std@0.160.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/bdd.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.158.0/testing/bdd.ts";
export * from "https://deno.land/std@0.160.0/testing/bdd.ts";

0 comments on commit 199aa6f

Please sign in to comment.