UNPKG

@fontoxml/fontoxml-development-tools

Version:
12 lines (9 loc) 411 B
'use strict'; 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; };