Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed May 5, 2023
1 parent 0477118 commit 6b08d37
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 112 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -78,7 +78,7 @@
"fs-extra": "^11.1.1",
"globby": "^13.1.4",
"gzip-size": "^7.0.0",
"h3": "^1.6.4",
"h3": "^1.6.5",
"hookable": "^5.5.3",
"http-proxy": "^1.18.1",
"is-primitive": "^3.0.1",
Expand All @@ -98,18 +98,18 @@
"pkg-types": "^1.0.3",
"pretty-bytes": "^6.1.0",
"radix3": "^1.0.1",
"rollup": "^3.21.4",
"rollup": "^3.21.5",
"rollup-plugin-visualizer": "^5.9.0",
"scule": "^1.0.0",
"semver": "^7.5.0",
"serve-placeholder": "^2.0.1",
"serve-static": "^1.15.0",
"source-map-support": "^0.5.21",
"std-env": "^3.3.2",
"ufo": "^1.1.1",
"std-env": "^3.3.3",
"ufo": "^1.1.2",
"unenv": "^1.4.1",
"unimport": "^3.0.6",
"unstorage": "^1.5.0"
"unstorage": "^1.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230419.0",
Expand Down
9 changes: 7 additions & 2 deletions playground/routes/index.ts
@@ -1,3 +1,8 @@
export default eventHandler(() => {
return "<h1>Hello Nitro!</h1>";
export default eventHandler(async (event) => {
const body = await readRawBody(event);
const body2 = await readRawBody(event);
return {
body,
body2,
};
});

0 comments on commit 6b08d37

Please sign in to comment.