webstorm-init
Version:
CLI tool to write initial WebStorm settings into a new project
15 lines • 641 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Error = void 0;
const react_1 = __importDefault(require("react"));
const ink_1 = require("ink");
exports.Error = ({ children }) => {
return (react_1.default.createElement(react_1.default.Fragment, null,
react_1.default.createElement(ink_1.Text, { color: "red", bold: true },
"\u2717 ",
children || "Unknown error — aborting")));
};
//# sourceMappingURL=Error.js.map