#!/usr/bin/env node const ghpages = require('../lib/index'); const program = require('commander'); const path = require('path'); const pkg = require('../package.json'); const addr = require('email-addresses'); function publish(config) { return new Promise((resolve, reject) => { const basePath = path.resolve(process.cwd(), program.dist); ghpages.publish(basePath, config, err => { if (err) { return reject(err); } resolve(); }); }); } function main(args) { return Promise.resolve().then(() => { program .version(pkg.version) .option('-d, --dist ', 'Base directory for all source files') .option( '-s, --src ', 'Pattern used to select which files to publish', ghpages.defaults.src ) .option( '-b, --branch ', 'Name of the branch you are pushing to', ghpages.defaults.branch ) .option( '-e, --dest ', 'Target directory within the destination branch (relative to the root)', ghpages.defaults.dest ) .option('-a, --add', 'Only add, and never remove existing files') .option('-x, --silent', 'Do not output the repository url') .option( '-m, --message ', 'commit message', ghpages.defaults.message ) .option('-g, --tag ', 'add tag to commit') .option('--git ', 'Path to git executable', ghpages.defaults.git) .option('-t, --dotfiles', 'Include dotfiles') .option('-r, --repo ', 'URL of the repository you are pushing to') .option('-p, --depth ', 'depth for clone', ghpages.defaults.depth) .option( '-o, --remote ', 'The name of the remote', ghpages.defaults.remote ) .option( '-u, --user
', 'The name and email of the user (defaults to the git config). Format is "Your Name ".' ) .option( '-v, --remove ', 'Remove files that match the given pattern ' + '(ignored if used together with --add).', ghpages.defaults.remove ) .option('-n, --no-push', 'Commit only (with no push)') .option( '-f, --no-history', 'Push force new commit without parent history' ) .option( '--before-add ', 'Execute the function exported by before "git add"' ) .parse(args); let user; if (program.user) { const parts = addr.parseOneAddress(program.user); if (!parts) { throw new Error( `Could not parse name and email from user option "${program.user}" ` + '(format should be "Your Name ")' ); } user = {name: parts.name, email: parts.address}; } let beforeAdd; if (program.beforeAdd) { const m = require(require.resolve(program.beforeAdd, { paths: [process.cwd()] })); if (typeof m === 'function') { beforeAdd = m; } else if (typeof m === 'object' && typeof m.default === 'function') { beforeAdd = m.default; } else { throw new Error( `Could not find function to execute before adding files in ` + `"${program.beforeAdd}".\n ` ); } } const config = { repo: program.repo, silent: !!program.silent, branch: program.branch, src: program.src, dest: program.dest, message: program.message, tag: program.tag, git: program.git, depth: program.depth, dotfiles: !!program.dotfiles, add: !!program.add, remove: program.remove, remote: program.remote, push: !!program.push, history: !!program.history, user: user, beforeAdd: beforeAdd }; return publish(config); }); } if (require.main === module) { main(process.argv) .then(() => { process.stdout.write('Published\n'); }) .catch(err => { process.stderr.write(`${err.message}\n`, () => process.exit(1)); }); } exports = module.exports = main;