Rongjian Zhang
Rongjian Zhang
@luxferresum Normally, if you are using Linux or macOS, `npm i -g yarn` should install yarn and add a link to `ls ~/.nn/current/bin`. You could check the output of ```sh...
@luxferresum In brief, `nn` add `PATH` once at installation. It does not change `PATH` when using it. The `PATH` added are: - `~/.nn/bin`: executable is placed here, which is `nn`(for...
@luxferresum Do you mean manual installation? Just do the following steps: - Download the correct binary from [release](https://github.com/pd4d10/nn/releases), rename it to `nn`(for macOS and Linux) or `nn.exe`(for Windows) - Create...
It's an interesting point. Seems they dynamically change `PATH` for every shell instance, while `nn` just use soft link. So if you run `nn use 10.8.0`, all shell instances will...
Great! Willing to submit a PR?
[The API document](https://github.com/dart-lang/pub/blob/master/doc/repository-spec-v2.md) is cool! Actually [the example](https://github.com/dart-lang/pub_server/blob/master/example/example.dart) or [simple_pub_server](https://github.com/v7lin/simple_pub_server) already meet our needs except the following things: 1. Only tarball and pubspec yaml file are stored currently. We want...
> The MathML is not intended to appear visually. Yep, noticed that the MathML node size is 1px*1px. But in this case, its position seems weird (see the screenshot)
Could you please provide a minimal reproduction? Then we can figure out which packages should be fixed/updated.
Yeah, we need a release workflow. PR's welcome! > the release workflow has been removed The previous is just a template and never works
You need to tweak this type definition file to keep consistent with the `include` option. For example, change this line https://github.com/pd4d10/vite-plugin-svgr/blob/1280569bbaccc2fb7be43ba70f2b384f6cabba93/client.d.ts#L4 to `declare module "*.svg"`. But I'm not sure if...