Hannes Widrig

Results 6 comments of Hannes Widrig

@gvergnaud lets make this happen 💪

This is still an issue in the latest version of Vitest.

I have a strong use case for Regex-validated string types. AWS Lambda function names have a maximum length of 64 characters. This can be manually checked in a character counter...

This might be the answer for many, especially for those using ESM with AWS SDK v3. https://github.com/aws/aws-sdk-js-v3/issues/4217#issuecomment-1356119155 ```typescript bundling: { format: aws_lambda_nodejs.OutputFormat.ESM, mainFields: ["module", "main"], }, architecture: aws_lambda.Architecture.ARM_64, ```

@evanw It would be amazing if we could have a solution to the current errors that didn't require including a banner to separately define `require` and other node built-ins. That...

It's really important that cancellation is eventually supported due to long-running LLM usage from a function like `generateText` via the AI SDK. Without a way to abort requests, I have...