Files
klz-cables.com/.pnpm-store/v10/files/e0/f2708ebabd1c3025e1330d0b9cb20affd7997069c8967c098fbb51f7b58bef96e8bc5f2f3822d4ede9aa97c2e67116ed8b2d6d78f8796156a831503a8511ed
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

17 lines
471 B
Plaintext

// eslint-disable-next-line @typescript-eslint/require-await
export const destroy = async function destroy() {
if (this.enums) {
this.enums = {};
}
this.schema = {};
this.tables = {};
this.relations = {};
this.fieldConstraints = {};
this.drizzle = undefined;
this.initializing = new Promise((res, rej)=>{
this.resolveInitializing = res;
this.rejectInitializing = rej;
});
};
//# sourceMappingURL=destroy.js.map