@fontoxml/fontoxml-development-tools
Version:
Development tools for FontoXML.
12 lines (9 loc) • 411 B
JavaScript
;
module.exports = function warnIfNotInsideEditorRepository (app) {
if (!app.request || !app.request.fdt || !app.request.fdt || !app.request.fdt.editorRepository || !app.request.fdt.editorRepository.sdkVersion) {
app.logger.break();
app.logger.notice('You\'re not running from inside an editor repository; this means this tool may not work as expected!');
return false;
}
return true;
};