mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
Remove commented lines.
This commit is contained in:
parent
07b23109f9
commit
be691e4230
@ -44,7 +44,6 @@ Definition of the `main` function.
|
|||||||
var program = new Command('hackmyresume')
|
var program = new Command('hackmyresume')
|
||||||
.version(PKG.version)
|
.version(PKG.version)
|
||||||
.description(chalk.yellow.bold('*** HackMyResume ***'))
|
.description(chalk.yellow.bold('*** HackMyResume ***'))
|
||||||
//.option('-o --optionsSafe <optionsFile>', 'Path to a .hackmyrc options file', /^\"(.*)\"$/i )
|
|
||||||
.option('-s --silent', 'Run in silent mode')
|
.option('-s --silent', 'Run in silent mode')
|
||||||
.option('--no-color', 'Disable colors')
|
.option('--no-color', 'Disable colors')
|
||||||
.option('--color', 'Enable colors')
|
.option('--color', 'Enable colors')
|
||||||
@ -52,7 +51,6 @@ Definition of the `main` function.
|
|||||||
.option('-v --version', 'Show the version')
|
.option('-v --version', 'Show the version')
|
||||||
.allowUnknownOption();
|
.allowUnknownOption();
|
||||||
program.jsonArgs = initInfo.options;
|
program.jsonArgs = initInfo.options;
|
||||||
//.usage('COMMAND <sources> [TO <targets>]');
|
|
||||||
|
|
||||||
// Create the NEW command
|
// Create the NEW command
|
||||||
program
|
program
|
||||||
@ -78,7 +76,6 @@ Definition of the `main` function.
|
|||||||
// Create the CONVERT command
|
// Create the CONVERT command
|
||||||
program
|
program
|
||||||
.command('convert')
|
.command('convert')
|
||||||
//.arguments('<sources...>')
|
|
||||||
.description('Convert a resume to/from FRESH or JSON RESUME format.')
|
.description('Convert a resume to/from FRESH or JSON RESUME format.')
|
||||||
.action(function() {
|
.action(function() {
|
||||||
var x = splitSrcDest.call( this );
|
var x = splitSrcDest.call( this );
|
||||||
@ -98,8 +95,6 @@ Definition of the `main` function.
|
|||||||
program
|
program
|
||||||
.command('build')
|
.command('build')
|
||||||
.alias('generate')
|
.alias('generate')
|
||||||
//.arguments('<sources> TO [targets]')
|
|
||||||
//.usage('...')
|
|
||||||
.option('-t --theme <theme>', 'Theme name or path')
|
.option('-t --theme <theme>', 'Theme name or path')
|
||||||
.option('-n --no-prettify', 'Disable HTML prettification', true)
|
.option('-n --no-prettify', 'Disable HTML prettification', true)
|
||||||
.option('-c --css <option>', 'CSS linking / embedding', 'embed')
|
.option('-c --css <option>', 'CSS linking / embedding', 'embed')
|
||||||
|
Loading…
Reference in New Issue
Block a user