2019-05-23 05:00:49 +00:00
|
|
|
#! /usr/bin/env node
|
2019-05-23 09:57:23 +00:00
|
|
|
/* Argument parser */
|
|
|
|
const program = require('commander');
|
|
|
|
|
|
|
|
process.env.OUT_DIR = process.env.OUT_DIR || process.cwd();
|
|
|
|
|
|
|
|
const {buildCommand} = require('../build');
|
|
|
|
const {updateCommand} = require('../update');
|
|
|
|
const {blogCommand} = require('../blog');
|
|
|
|
const {runCommand} = require('../run');
|
|
|
|
const {version} = require('../package.json');
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('build <username>')
|
|
|
|
.description('Build site with your GitHub username. This will be used to customize your site')
|
|
|
|
.option('-t, --theme [theme]', 'specify a theme to use', 'light')
|
|
|
|
.option('-b, --background [background]', 'set the background image')
|
|
|
|
.option('-f, --fork', 'includes forks with repos')
|
|
|
|
.option('-s, --sort [sort]', 'set default sort for repository', 'created')
|
|
|
|
.option('-o, --order [order]', 'set default order on sort', 'asc')
|
2019-07-18 13:43:21 +00:00
|
|
|
.option('-w, --twitter [handle]', 'set Twitter handle')
|
|
|
|
.option('-l, --linkedin [username]', 'specify LinkedIn username')
|
|
|
|
.option('-m, --medium [username]', 'specify Medium username')
|
2019-05-23 09:57:23 +00:00
|
|
|
.action(buildCommand)
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('update')
|
|
|
|
.description('Update user and repository data')
|
|
|
|
.action(updateCommand);
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('blog <title>')
|
|
|
|
.description('Create blog with specified title')
|
|
|
|
.option('-s, --subtitle [subtitle]', 'give blog a subtitle', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.')
|
|
|
|
.option('-p, --pagetitle [pagetitle]', 'give blog page a title')
|
|
|
|
.option('-f, --folder [folder]', 'give folder a title (use "-" instead of spaces)')
|
|
|
|
.action(blogCommand);
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('run')
|
|
|
|
.description('Run build files')
|
|
|
|
.action(runCommand);
|
|
|
|
|
|
|
|
program.on('command:*', () => {
|
|
|
|
console.log('Unknown Command: ' + program.args.join(' '))
|
|
|
|
program.help()
|
|
|
|
});
|
|
|
|
|
|
|
|
program
|
|
|
|
.version(version, '-v --version')
|
|
|
|
.usage('<command> [options]')
|
|
|
|
.parse(process.argv);
|
|
|
|
|
|
|
|
if (program.args.length === 0) program.help();
|