UNPKG

rush-init-project-plugin

Version:

Rush plugin for initialize project in monorepo

23 lines 663 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Warning = void 0; var blessed_1 = require("blessed"); var COLORS_1 = require("../COLORS"); var Warning = function () { var WarningBox = (0, blessed_1.box)({ bottom: 0, height: 1, transparent: true, index: 10, style: { fg: COLORS_1.COLORS.amber6 } }); var setWarningContent = function (content) { WarningBox.setContent(content); }; // list.focus(); return { WarningBox: WarningBox, setWarningContent: setWarningContent }; }; exports.Warning = Warning; //# sourceMappingURL=Warning.js.map