hono 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,5 +21,4 @@ export declare class Middleware {
21
21
  exposeHeaders?: string[];
22
22
  }) => (c: import("./context").Context, next: Function) => Promise<void>;
23
23
  static cookie: () => (c: import("./context").Context, next: Function) => Promise<void>;
24
- static mustache: () => (c: import("./context").Context, next: Function) => Promise<void>;
25
24
  }
@@ -8,7 +8,7 @@ const basic_auth_1 = require("./middleware/basic-auth/basic-auth");
8
8
  const body_parse_1 = require("./middleware/body-parse/body-parse");
9
9
  const cors_1 = require("./middleware/cors/cors");
10
10
  const cookie_1 = require("./middleware/cookie/cookie");
11
- const mustache_1 = require("./middleware/mustache/mustache");
11
+ //import { mustache } from './middleware/mustache/mustache'
12
12
  class Middleware {
13
13
  }
14
14
  exports.Middleware = Middleware;
@@ -19,4 +19,3 @@ Middleware.basicAuth = basic_auth_1.basicAuth;
19
19
  Middleware.bodyParse = body_parse_1.bodyParse;
20
20
  Middleware.cors = cors_1.cors;
21
21
  Middleware.cookie = cookie_1.cookie;
22
- Middleware.mustache = mustache_1.mustache;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hono",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "[炎] Ultrafast web framework for Cloudflare Workers.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",