Meir Blachman
Meir Blachman
https://gist.github.com/Meir017/c60b50d3076bfb9a9eea662d31dab37d
@zcy790811 does this solve the issue? how was this `package.lock` file generated? did you configure the registry to a custom one?
@craone try the new preview version `3.11.2-preview1`
@coder-zcy can you provide the `package-lock.json` file? is it the same file as https://gist.github.com/Meir017/c60b50d3076bfb9a9eea662d31dab37d ?
@coder-zcy is your issue the same as https://github.com/Meir017/node-tgz-downloader/runs/6342998160?check_suite_focus=true ?
@deskoh is your goal to serve the `tgz` files using a simple static server? I first started this project to work together with https://github.com/verdaccio/verdaccio
@deskoh all you need to do is iterate over all of the downloaded `.tgz` files and `npm publish` then to your verdaccio server it will keep the original `shasum` and...
@deskoh some packages might need special handling, for example the `node-sass` module tries to download artifacts from github releases. I created https://github.com/meir017/node-sass-downloader/ to help with that
for asserting the `Length` and `GetLength` functionality maybe something like this ```cs var array = new string[2,3] { { "a", "b", "c" }, { "d", "e", "f" } }; array.Should().BeEmpty();...
I'm wondering if for each different array dimension there should be a dedicated assertions class, this will allow to have strongly-typed assertions and not just use the `System.Array` type. this...