Yoshiya Hinosawa
Yoshiya Hinosawa
The created logger doesn't have any handler. It means the logger doesn't do anything. I wonder if this change would impact the user in any meaningful way..
I think this is rather confusing to the users without clear benefit. Let's not do this
Warning makes sense when `lib` and `runtime` options conflict. But how about merging them when the both configurations have no overlaps? I guess some users might want to use their...
@JOTSR > This feature seems to be like the way we define runtime support on jsr, does it will be also used as standard jsr package entry ? Currently there's...
After this change `parse("1 = truea = 1")` parse to `{ "1": true, a: 1 }` while it raises syntax error correctly on main. I think we need more test...
This happens because we map each `test`/`it` case to test step (`t.step`) and test steps can't be filtered by `deno test --filter` option (This is by design in this way....
@KyleJune I'm wondering if we can switch to map everything to `Deno.test` instead `t.step` because `t.step` doesn't (and probably won't) support the filtering and this issue can't be solved if...
> So to actually get this to work, we are going to need a way for bdd to signal that --filter shouldn't apply to the tests it registers, that way...
@BlackAsLight do you know whether `std/archive` did support PAX format or not?
> ```ts > import { encodeBase64 } from "jsr:@std/encoding/base64"; > > encodeBase64(Deno.readFileSync(Deno.execPath())); > ``` @FergoTheGreat Can you check that the above snippet passes with your change? If it passes, it...