Yuto Oguchi

Results 49 comments of Yuto Oguchi

Don't forget to pin this issue instead of #99!

For your reference: https://github.com/denoland/dotland (repository for deno.land) https://github.com/denoland/dotland/blob/453450c5b3ef987f45fe3fc34b8d2ad503591447/util/registry_utils.ts#L178-L211 (deno.land/x API endpoint implementation)

> I'm wondering what is the declarative configuration Sorry, I have no good answer for this. > What would be the benefits of managing the configuration in a declarative manner?...

While I am trying to make it work in deno, I got an error. It is probably due to a bug in deno `std` module (`[email protected]/node/_buffer.js`), or isomorphic-git itself. ```ts...

Sorry, it seems to be my misunderstanding. I created a small code without isomorphic-git and still see `Buffer.prototype` is `Uint8Array`. (I traced the whole process on [DevTools](https://deno.land/manual/getting_started/debugging_your_code) on Chrome browser....

I made additional research and found on both node.js and deno `Buffer.prototype` is Uint8Array at runtime. It seems that deno just implements `Buffer.toString()` in incompatible way to node.js.

I'm so sorry that I was completely messed up. It wasn't a problem of neither deno nor isomorphic-git. It was due to `skypack.dev` CDN, which is responsible for converting node.js...

@jcubic Nice, I'll create a PR later then.

I'm trying to fix this issue. I'm ready to create PR shortly.

I found that the current implementation for reading current value from `defaults` output is hard to apply to dictionary. It just read NeXTSTEP format and parse it with regex. It's...