chore: add vitest project config and yarn constraints

This commit is contained in:
Christian Andolf
2025-06-30 11:29:09 +02:00
parent 4e1cb01b84
commit 733281240f
14 changed files with 45 additions and 590 deletions

10
yarn.config.cjs Normal file
View File

@@ -0,0 +1,10 @@
/** @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`);
}
},
});