Skip to content

Commit 170e604

Browse files
authored
bump: deno_std@0.100.0 (#164)
1 parent 2852318 commit 170e604

26 files changed

Lines changed: 28 additions & 28 deletions

File tree

middleware/cors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ export interface CORSOptions {
1616
* @default none
1717
*/
1818
allowedHeaders?: string[];
19-
/**
19+
/**
2020
* values for Access-Control-Expose-Headers
2121
* @default none
2222
*/
2323
exposedHeaders?: string[];
24-
/**
24+
/**
2525
* values for Access-Control-Allow-Credentials
2626
* @default none
2727
*/

modules-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@0.92.0",
3+
"version": "@0.100.0",
44
"modules": [
55
"/testing/asserts.ts",
66
"/textproto/mod.ts",

modules.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@0.92.0",
3+
"version": "@0.100.0",
44
"modules": [
55
"/testing/asserts.ts",
66
"/textproto/mod.ts",

responder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { contentTypeByExt } from "./media_types.ts";
66
/** Basic responder for http response */
77
export interface Responder extends CookieSetter {
88
/**
9-
* Respond to request
9+
* Respond to request
1010
* Error will be thrown if request has already been responded.
1111
* headers is merged with responseHeaders
1212
* */

serve_static.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export interface ServeStaticOptions {
2020
contentDispositionMap?: Map<string, "inline" | "attachment">;
2121
/** Custom filter function for files */
2222
filter?: (file: string) => boolean | Promise<boolean>;
23-
/**
23+
/**
2424
* Delactives for Cache-Control header
2525
* No value will be sent by default.
2626
* */

site/pages/concept.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default () => (
1111
<p>
1212
Servest was developed as the optional HTTP server module to Deno's
1313
{" "}
14-
<a href={"https://github.com/denoland/deno/tree/master/std/http"}>
14+
<a href={"https://github.com/denoland/deno_std/tree/main/http"}>
1515
standard http module
1616
</a>
1717
.

types/react/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3332,9 +3332,9 @@ declare global {
33323332

33333333
// We can't recurse forever because `type` can't be self-referential;
33343334
// let's assume it's reasonable to do a single React.lazy() around a single React.memo() / vice-versa
3335-
type LibraryManagedAttributes<C, P> = C extends
3335+
type LibraryManagedAttributes<C, P> = C extends
33363336
| React.MemoExoticComponent<infer T>
3337-
| React.LazyExoticComponent<infer T> ? T extends
3337+
| React.LazyExoticComponent<infer T> ? T extends
33383338
| React.MemoExoticComponent<infer U>
33393339
| React.LazyExoticComponent<infer U> ? ReactManagedAttributes<U, P>
33403340
: ReactManagedAttributes<T, P>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.92.0/async/mod.ts";
1+
export * from "https://deno.land/std@0.100.0/async/mod.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.92.0/datetime/mod.ts";
1+
export * from "https://deno.land/std@0.100.0/datetime/mod.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.92.0/flags/mod.ts";
1+
export * from "https://deno.land/std@0.100.0/flags/mod.ts";

0 commit comments

Comments
 (0)