11 lines
264 B
JavaScript
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`);
|
|
}
|
|
},
|
|
});
|