#!/usr/bin/env node const path = require('path'); const {Command} = require('commander'); const addr = require('email-addresses'); const ghpages = require('../lib/index.js'); const pkg = require('../package.json'); function publish(dist, config) { return new Promise((resolve, reject) => { const basePath = path.resolve(process.cwd(), dist); ghpages.publish(basePath, config, (err) => { if (err) { return reject(err); } resolve(); }); }); } function main(args) { return Promise.resolve().then(() => { const program = new Command() .version(pkg.version) .requiredOption( '-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('--nojekyll', 'Add a .nojekyll file to disable Jekyll') .option( '--cname ', 'Add a CNAME file with the name of your custom domain', ) .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); const options = program.opts(); let user; if (options.user) { const parts = addr.parseOneAddress(options.user); if (!parts) { throw new Error( `Could not parse name and email from user option "${options.user}" ` + '(format should be "Your Name ")', ); } user = {name: parts.name, email: parts.address}; } let beforeAdd; if (options.beforeAdd) { const m = require( require.resolve(options.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 ` + `"${options.beforeAdd}".\n `, ); } } const config = { repo: options.repo, silent: !!options.silent, branch: options.branch, src: options.src, dest: options.dest, message: options.message, tag: options.tag, git: options.git, depth: options.depth, dotfiles: !!options.dotfiles, nojekyll: !!options.nojekyll, cname: options.cname, add: !!options.add, remove: options.remove, remote: options.remote, push: !!options.push, history: !!options.history, user: user, beforeAdd: beforeAdd, }; return publish(options.dist, config); }); } if (require.main === module) { main(process.argv) .then(() => { process.stdout.write('Published\n'); }) .catch((err) => { process.stderr.write(`${err.stack}\n`, () => process.exit(1)); }); } module.exports = main; exports = module.exports;