Charles Pritchard
Charles Pritchard
My use case is bundling some relative workspace dependencies via: ``` enableGlobalCache: false nodeLinker: pnp ``` Works great but I had a big `data` folder which was meant to be...
@dannysu @tmikov I think for lseek this one is fine for adding to the file: ``` #ifdef HAVE_LSEEK64 #ifndef lseek64 off64_t lseek64(int fd, off64_t offset, int whence) { return lseek(fd,...
This link is a great resource for actually getting aliases to show up when they sometimes don't in type hints in your IDE: https://stackoverflow.com/questions/57683303/how-can-i-see-the-full-expanded-contract-of-a-typescript-type This one in particular will expand...
I would like named/labeled tuples support in play; https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#labeled-tuple-elements These are poorly supported by OpenAPI by using min and max element counts for an array of values.
This is not the right way to do it, but shows the behavior I am using for this one very particular use case. It may make sense to simply add...
This will happen all the time when there's an entry for the package in resolutions itself - seems some bugs in that.
Confirming this is a duplicate of #81 - on node 22 and node 24.
Long-standing issues like https://github.com/jax-ml/jax/issues/16321 are also one of the differences.
Also looks more like `@aws-sdk/client-s3` should be an optional or peer dependency, not just a dev dependency.
For yarn users: ``` packageExtensions: "unzipper@*": dependencies: "@aws-sdk/client-s3": "*" ```