UNPKG

zenodraft

Version:

CLI to manage depositions on Zenodo and Zenodo Sandbox

21 lines 987 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.zenodraft_command = void 0; const commander = require("commander"); const deposition_1 = require("./cli/deposition"); const file_1 = require("./cli/file"); const metadata_1 = require("./cli/metadata"); const tokens_help_text_1 = require("./lib/helpers/tokens-help-text"); const zenodraft_command = () => { return new commander.Command() .name('zenodraft') .version('0.14.1') .description('CLI to manage depositions on Zenodo or Zenodo Sandbox.') .addCommand(deposition_1.deposition_command()) .addCommand(file_1.file_command()) .addCommand(metadata_1.metadata_command()) .addHelpText('after', tokens_help_text_1.tokensHelpText) .addHelpText('afterAll', '\nIf you use this tool, consider starring it on GitHub:\nhttps://github.com/zenodraft/zenodraft'); }; exports.zenodraft_command = zenodraft_command; //# sourceMappingURL=cli.js.map