UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

6 lines 360 B
import { nodeReleasesSupportedInDateRange } from "./releases-supported-in-date-range.js"; export function createNodeVersions(today) { const currentReleases = nodeReleasesSupportedInDateRange({ start: today, end: today }); return { targetVersions: currentReleases, testedVersions: currentReleases, currentReleases }; } //# sourceMappingURL=create.js.map