Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Nov 9, 2019
1 parent 9e4a615 commit ae47f3f
Show file tree
Hide file tree
Showing 24 changed files with 45 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- name: Install Deno
run: |
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.22.0
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.23.0
- name: Run Tests
run: |
export PATH=$HOME/.deno/bin:$PATH
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![Build Status](https://github.com/keroxp/servest/workflows/CI/badge.svg)](https://github.com/keroxp/servest/actions)
![https://img.shields.io/github/tag/keroxp/servest.svg](https://img.shields.io/github/tag/keroxp/servest.svg)
[![license](https://img.shields.io/github/license/keroxp/servest.svg)](https://github.com/keroxp/servest)
[![tag](https://img.shields.io/badge/deno-v0.21.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno__std-v0.21.0-green.svg)](https://github.com/denoland/deno_std)
[![tag](https://img.shields.io/badge/deno-v0.23.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno__std-v0.23.0-green.svg)](https://github.com/denoland/deno_std)

🌾A progressive http server for Deno🌾

Expand Down
29 changes: 21 additions & 8 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@v0.22.0",
"version": "@v0.23.0",
"modules": [
"/testing/mod.ts",
"/testing/asserts.ts",
Expand All @@ -24,32 +24,45 @@
},
"https://dev.jspm.io/react": {
"version": "@16.10.2",
"modules": ["/index.js"],
"modules": [
"/index.js"
],
"types": {
"/index.js": "./types/react/index.d.ts"
}
},
"https://dev.jspm.io/react-dom": {
"version": "@16.10.2",
"modules": ["/server.js"],
"modules": [
"/server.js"
],
"types": {
"/server.js": "./types/react-dom/server/index.d.ts"
}
},
"https://dev.jspm.io/@types/react": {
"version": "@16",
"modules": ["/index.d.ts", "/global.d.ts"]
"modules": [
"/index.d.ts",
"/global.d.ts"
]
},
"https://dev.jspm.io/@types/react-dom": {
"version": "@16",
"modules": ["/server/index.d.ts"]
"modules": [
"/server/index.d.ts"
]
},
"https://dev.jspm.io/@types/prop-types": {
"version": "@15.7.2",
"modules": ["/index.d.ts"]
"modules": [
"/index.d.ts"
]
},
"https://dev.jspm.io/csstype": {
"version": "@2.6.7",
"modules": ["/index.d.ts"]
"modules": [
"/index.d.ts"
]
}
}
}
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": "@v0.22.0",
"version": "@v0.23.0",
"modules": [
"/testing/mod.ts",
"/testing/asserts.ts",
Expand Down
2 changes: 1 addition & 1 deletion serveio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export async function readRequest(
let [_, method, url, proto] = resLine.match(/^([^ ]+)? ([^ ]+?) ([^ ]+?)$/);
method = method.toUpperCase();
// read header
const headers: Headers = await promiseInterrupter({
const headers = await promiseInterrupter({
timeout: opts.readTimeout,
cancel: opts.cancel
})(tpReader.readMIMEHeader());
Expand Down
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@v0.22.0/flags/mod.ts";
export * from "https://deno.land/std@v0.23.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@v0.22.0/fmt/colors.ts";
export * from "https://deno.land/std@v0.23.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/sprintf.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/fmt/sprintf.ts";
export * from "https://deno.land/std@v0.23.0/fmt/sprintf.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fs/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/fs/mod.ts";
export * from "https://deno.land/std@v0.23.0/fs/mod.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@v0.22.0/io/bufio.ts";
export * from "https://deno.land/std@v0.23.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@v0.22.0/io/readers.ts";
export * from "https://deno.land/std@v0.23.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@v0.22.0/io/writers.ts";
export * from "https://deno.land/std@v0.23.0/io/writers.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/media_types/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/media_types/mod.ts";
export * from "https://deno.land/std@v0.23.0/media_types/mod.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@v0.22.0/mime/multipart.ts";
export * from "https://deno.land/std@v0.23.0/mime/multipart.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/multipart/formfile.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/multipart/formfile.ts";
export * from "https://deno.land/std@v0.23.0/multipart/formfile.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@v0.22.0/path/mod.ts";
export * from "https://deno.land/std@v0.23.0/path/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/strings/decode.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/strings/decode.ts";
export * from "https://deno.land/std@v0.23.0/strings/decode.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/strings/encode.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/strings/encode.ts";
export * from "https://deno.land/std@v0.23.0/strings/encode.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@v0.22.0/testing/asserts.ts";
export * from "https://deno.land/std@v0.23.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/testing/mod.ts";
export * from "https://deno.land/std@v0.23.0/testing/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/runner.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/testing/runner.ts";
export * from "https://deno.land/std@v0.23.0/testing/runner.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@v0.22.0/textproto/mod.ts";
export * from "https://deno.land/std@v0.23.0/textproto/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/util/async.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.22.0/util/async.ts";
export * from "https://deno.land/std@v0.23.0/util/async.ts";
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const ServestVersion = "v0.24.0";
export const ServestVersion = "v0.24.1";

0 comments on commit ae47f3f

Please sign in to comment.