Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Dec 31, 2020
1 parent bb415c5 commit db70391
Show file tree
Hide file tree
Showing 25 changed files with 24 additions and 31 deletions.
1 change: 0 additions & 1 deletion .denov

This file was deleted.

5 changes: 0 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Deno
run: |
echo "DENO_VERSION=$(cat .denov)" >> $GITHUB_ENV
- uses: denolib/setup-deno@master
with:
deno-version: ${{ env.DENO_VERSION }}
- name: Fmt check
run: deno fmt --check
- name: Check mod.ts
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
DENO_VERSION=`cat .denov`
default: test
.PHONY: types
types:
Expand All @@ -7,9 +6,9 @@ types:
test:
deno test -A *_test.ts
build:
docker build --build-arg DENO_VERSION=$(DENO_VERSION) -t servest/site .
docker build -t servest/site .
bench:
docker build --build-arg DENO_VERSION=$(DENO_VERSION) -t servest/bench -f benchmark/Dockerfile .
docker build -t servest/bench -f benchmark/Dockerfile .
do-bench: bench
docker run -t servest/bench
do-std-bench: bench
Expand Down
2 changes: 1 addition & 1 deletion app_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ group({
resolve(msg.data);
};
});
const p2 = new Promise((resolve) => {
const p2 = new Promise<void>((resolve) => {
sock.onclose = () => {
resolve();
};
Expand Down
2 changes: 1 addition & 1 deletion modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.78.0",
"version": "@0.83.0",
"modules": [
"/testing/asserts.ts",
"/textproto/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.78.0",
"version": "@0.83.0",
"modules": [
"/testing/asserts.ts",
"/textproto/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/async/mod.ts";
export * from "https://deno.land/std@0.83.0/async/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/datetime/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/datetime/mod.ts";
export * from "https://deno.land/std@0.83.0/datetime/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/encoding/utf8.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/encoding/utf8.ts";
export * from "https://deno.land/std@0.83.0/encoding/utf8.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/flags/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/flags/mod.ts";
export * from "https://deno.land/std@0.83.0/flags/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/fmt/colors.ts";
export * from "https://deno.land/std@0.83.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/printf.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/fmt/printf.ts";
export * from "https://deno.land/std@0.83.0/fmt/printf.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fs/exists.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/fs/exists.ts";
export * from "https://deno.land/std@0.83.0/fs/exists.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fs/expand_glob.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/fs/expand_glob.ts";
export * from "https://deno.land/std@0.83.0/fs/expand_glob.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/hash/sha1.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/hash/sha1.ts";
export * from "https://deno.land/std@0.83.0/hash/sha1.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/http/_io.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/http/_io.ts";
export * from "https://deno.land/std@0.83.0/http/_io.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/http/http_status.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/http/http_status.ts";
export * from "https://deno.land/std@0.83.0/http/http_status.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/bufio.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/io/bufio.ts";
export * from "https://deno.land/std@0.83.0/io/bufio.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/readers.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/io/readers.ts";
export * from "https://deno.land/std@0.83.0/io/readers.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/writers.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/io/writers.ts";
export * from "https://deno.land/std@0.83.0/io/writers.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/mime/multipart.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/mime/multipart.ts";
export * from "https://deno.land/std@0.83.0/mime/multipart.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/path/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/path/mod.ts";
export * from "https://deno.land/std@0.83.0/path/mod.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.78.0/testing/asserts.ts";
export * from "https://deno.land/std@0.83.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/textproto/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/textproto/mod.ts";
export * from "https://deno.land/std@0.83.0/textproto/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/ws/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.78.0/ws/mod.ts";
export * from "https://deno.land/std@0.83.0/ws/mod.ts";

0 comments on commit db70391

Please sign in to comment.