Files
klz-cables.com/.pnpm-store/v10/files/8d/eb18e722905a279c76bab147dad00d81f7b1634c7823e7712178ad235bfad0d4b4f456484ab016171a76234fdbb223baa71c1590b7f61af1da0b8533385e6e
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

16 lines
511 B
Plaintext

export const createExtensions = async function() {
for(const extension in this.extensions){
if (this.extensions[extension]) {
try {
await this.drizzle.execute(`CREATE EXTENSION IF NOT EXISTS "${extension}"`);
} catch (err) {
this.payload.logger.error({
err,
msg: `Failed to create extension ${extension}`
});
}
}
}
};
//# sourceMappingURL=createExtensions.js.map