Skip to content

Commit

Permalink
fix: bump vitepress to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Mar 26, 2024
1 parent bc22d65 commit 4f189f5
Show file tree
Hide file tree
Showing 3 changed files with 498 additions and 56 deletions.
6 changes: 2 additions & 4 deletions docs/docs/snippets/middlewares/call-sequences.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import {Next} from "@tsed/common";
import {Use, UseAfter, UseBefore, UseBeforeEach} from "@tsed/platform-middlewares";
import {Get} from "@tsed/schema";
import {Controller} from "@tsed/di";
Expand All @@ -13,9 +12,8 @@ export class MyCtrl {
@UseBefore(MdlwBefore)
@Use(Mdlw)
@UseAfter(MdlwAfter)
endpointA(@Next() next: Next) {
console.log("EndpointA");
next();
endpointA() {

}

@Get("/")
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"ts-node": "10.9.2",
"typescript": "^5.3.3",
"vite": "5.1.5",
"vitepress": "^1.0.0-rc.44",
"vitepress": "1.0.1",
"vitest": "1.3.1",
"vue": "^3.4.19"
},
Expand Down
Loading

0 comments on commit 4f189f5

Please sign in to comment.