Files
klz-cables.com/.pnpm-store/v10/files/95/3785c269a80869db8db4713d93ba429e2eec0d8866b6016ced5e3ca95b9daad6f8cb8ac4635a9d963ec4e1f1f0cb5b0010443a4557fb27b0f9c4c379d72065
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

9 lines
223 B
Plaintext

import { createWriteStream } from 'node:fs'
import { once } from 'node:events'
export default async function run (opts) {
const stream = createWriteStream(opts.destination)
await once(stream, 'open')
return stream
}