Ahuigo
Ahuigo
@ddosakura It's not a good way for external package. Maybe, we should wait Deno to support it. https://github.com/denoland/deno/issues/11961
You could use `@Param`: ``` // @Param Cookie header string false "token" default(token=xxx) ```
Some ideas about decreasing the building time of Hexo. 1. The `db.json` 1. Stores **only** markdown files's **meta info**(`path`,`title`,`date`,`updated`,`category`). and building info such as `last building time`. 2. Don't cache...
I've written a script to generate static blog. https://github.com/ahuigo/a/blob/master/tool/pre-commit It's only for my own use, not for hexo.
Same error with with deno 1.33.4, here is an example: https://github.com/ahuigo/deno-debug-example. Bad case reproduce step: 1. Install vscode and vscode-deno plugin. 2. Open this project with vscode 3. Press `F5`,...
I suggest to support this `deno.codeLens.testEnvs` option
@zwn Have you upgraded deno? It works well for me (deno 1.38.3 / macosx 12 m1)
> @ahuigo, I'm wondering, can you extract examples that are not related to current PR and create a separate PR targeting branch `v2`? @jeevatkm Of course. Please review this PR(v2):...
The reason is that `httpmock` uses `http.DefaultTransport` to mock http, but resty does not use `http.DefaultTransport`.
Global variables are not a good design and are prone to abuse. Imagine a scenario : 1. moduleA wants to set `SetTimeout(5 * time. Second) ` 2. moduleB wants to...