njlr
njlr
What is the purpose of the internal dependency management? Could a simpler design work like this? ```javascript import puppeteerExtra from 'puppeteer-extra'; import MyPlugin from 'my-plugin'; const puppeteer = pupeteerExtra({ plugins:...
> The above already exists (with puppeteer.use()) :) I meant this usage but with internal dependency management removed entirely. > The idea behind the dependency plugin system was to make...
> we still need to do dynamic require() under the hood Why is this?
> > > we still need to do dynamic require() under the hood > > > > > > Why is this? > > It's always good to question assumptions,...
I submitted a PR: https://github.com/lefticus/cppbestpractices/pull/102
This appears to have solved it: https://stackoverflow.com/a/72137669/1256041 I guess this is a .NET issue rather than a Paket one?
I figured this out and made a demo repo: https://github.com/njlr/giraffe-file-upload Yes, perhaps the docs could be improved!
Unfortunately bumping to `5.2.0` did not fix things for me. I am on Ubuntu: ```bash $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS...
This has a stable hash, so I think it is `rules_dotnet`: ```starlark genrule( name = "hello", outs = [ "hello.txt" ], cmd = "echo 'Hello, world. ' > $@", )...
> Could you diff the contents of the tar files and see what files are different? Or if you have an repository with the code I can take a look...