release-checker
Version:
Check your release before publishing
16 lines (15 loc) • 417 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var noopChecker = {
canRun: function () { return false; },
cliOption: '--noop',
errors: [],
hasErrors: false,
hasWarnings: false,
id: 'noop',
run: function () { return []; },
shortCliOption: '-n',
statusToDisplayWhileValidating: 'noop',
warnings: [],
whyCannotRun: function () { return ''; },
};