@xylabs/ts-scripts-yarn3 7.4.6 → 7.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/xy/index.mjs CHANGED
@@ -1114,6 +1114,7 @@ function hasImportPlugin({ location, allDependencies }) {
1114
1114
  }
1115
1115
  return false;
1116
1116
  }
1117
+ var hasVitest = ({ allDependencies }) => allDependencies.includes("vitest");
1117
1118
  var rules = [
1118
1119
  {
1119
1120
  package: "typescript",
@@ -1126,6 +1127,10 @@ var rules = [
1126
1127
  {
1127
1128
  package: "tslib",
1128
1129
  isNeeded: hasDecorators
1130
+ },
1131
+ {
1132
+ package: "@vitest/coverage-v8",
1133
+ isNeeded: hasVitest
1129
1134
  }
1130
1135
  ];
1131
1136
  function getImplicitDevDependencies(context) {