[dependency-test] only add vitest config for migrated packages (#30060)

as packages not migrated yet would be broken when they build using tsc
and the *config.ts are included as source.
This commit is contained in:
Jeremy Meng 2024-06-14 12:32:07 -07:00 коммит произвёл GitHub
Родитель 04cc8a0045
Коммит 3afccc67ad
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -403,7 +403,9 @@ async function main(argv) {
testFolder,
);
await insertTsConfigJson(targetPackagePath, testFolder);
copyVitestConfig(targetPackagePath, testFolder);
if (packageJsonContents.scripts["integration-test:node"].includes("vitest")) {
copyVitestConfig(targetPackagePath, testFolder);
}
if (dryRun) {
console.log("Dry run only, no changes");
return;