Files
web/yarn.config.cjs
2025-06-30 14:17:49 +02:00

11 lines
264 B
JavaScript

/** @type {import('@yarnpkg/types')} */
const { defineConfig } = require("@yarnpkg/types");
module.exports = defineConfig({
async constraints({ Yarn }) {
for (const dep of Yarn.dependencies({ ident: "vitest" })) {
dep.update(`^3.2.4`);
}
},
});