Balázs Németh
Balázs Németh
### Environment [email protected] [email protected] ### Reproduction 1. Build nitro 2. Check /dist/runtime folder ### Describe the bug In `package.json` there are exports defined for the `runtime` folder: ```json "./runtime/*": {...
### Environment Nitro 2.8.1 Nuxt 3.10.2 Ubuntu 20.04.5 LTS Wrangler 3.28 Ubuntu 22.04.1 LTS (WSL) Wrangler 3.28 ```ts storage: { cache: { driver: "cloudflare-kv-binding" } } ``` ### Reproduction Currently...
Hi! I found a nice memory leak issue in Chromium based browsers due to a V8 engine string slicing problem. More about it here: https://bugs.chromium.org/p/v8/issues/detail?id=2869 This causes a longer DVR...
Hello! I've been after these errors for months now. `The script will never generate a response` `✘ [ERROR] Uncaught (in response) Error: Promise will never complete.` `✘ [ERROR] Uncaught (in...
Hi! When I open a project that uses this package, VSCode reports errors like the following: ``` Cannot write file 'node_modules/openapi3-ts/dist/dsl/openapi-builder30.d.ts' because it would overwrite input file. ``` The published...
Hi! This fixes one of the issues I encountered: https://github.com/jofr/capacitor-media-session/issues/19#issuecomment-1998055987 Thanks, zsilbi
Hello! Resolves https://github.com/unjs/unstorage/issues/400 I added tests for `libsql` (local file) and `postgresql` (only runs when the connection string in the `.env` is present. And I also updated the docs. Notes:...
### Reproduction link or steps Reproduction: https://stackblitz.com/edit/github-qo1x947q?file=src%2Fentry.js Overview of the files: ```js // rolldown.config.mjs import { defineConfig } from 'rolldown'; export default defineConfig({ input: ['./src/entry.js'], external: ['ext-index', 'ext-file', 'ext-folder'], });...
Hello! v4 looks great!👌 I found a few type portability issues during the migration. ### Errors After replacing `z.string().datetime()` with `z.iso.datetime()` I got a lot of errors like this in...
Issue https://github.com/unjs/ohash/issues/156 Re-added the `sha256` hex function: ```ts import { sha256 } from "ohash/sha256"; // "a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e" console.log(sha256("Hello World")); ``` Added back the tests for the js/node implementations. Updated `README` accordingly.