UNPKG

declapract

Version:

A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.

13 lines 587 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.displayPlans = void 0; const sortFileActionPlansByPaths_1 = require("../sortFileActionPlansByPaths"); const displayPlan_1 = require("./displayPlan"); const displayPlans = async ({ plans }) => { const sortedPlans = (0, sortFileActionPlansByPaths_1.sortFileActionPlansByPaths)({ plans }); for (const plan of sortedPlans) { await (0, displayPlan_1.displayPlan)({ plan }); // one at a time, sequentially } }; exports.displayPlans = displayPlans; //# sourceMappingURL=displayPlans.js.map