mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Fix CREATE verb output.
This commit is contained in:
parent
3aabb5028d
commit
bece335a64
@ -45,7 +45,7 @@ Output routines for HackMyResume.
|
||||
|
||||
case HME.beforeCreate:
|
||||
this.log( chalk.green('Creating new ') +
|
||||
chalk.green.bold(evt.cmd) +
|
||||
chalk.green.bold(evt.fmt) +
|
||||
chalk.green(' resume: ') + chalk.green.bold(evt.file));
|
||||
break;
|
||||
|
||||
@ -56,8 +56,8 @@ Output routines for HackMyResume.
|
||||
case HME.beforeMerge:
|
||||
var msg = '';
|
||||
evt.f.reverse().forEach( function( a, idx ) {
|
||||
msg += ((idx === 0) ? chalk.cyan('Merging ') : chalk.cyan(' onto '))
|
||||
+ chalk.cyan.bold(a.i().file);
|
||||
msg += ((idx === 0) ? chalk.cyan('Merging ') :
|
||||
chalk.cyan(' onto ')) + chalk.cyan.bold(a.i().file);
|
||||
});
|
||||
this.log( msg );
|
||||
break;
|
||||
@ -128,6 +128,7 @@ Output routines for HackMyResume.
|
||||
break;
|
||||
|
||||
case HME.afterAnalyze:
|
||||
// TODO: templatize all of this
|
||||
var info = evt.info;
|
||||
var padding = 20;
|
||||
this.log(chalk.cyan.bold('\nSECTIONS') + chalk.cyan(' (') +
|
||||
|
@ -44,11 +44,11 @@ Implementation of the 'create' verb for HackMyResume.
|
||||
|
||||
_.each( src, function( t ) {
|
||||
var safeFmt = opts.format.toUpperCase();
|
||||
this.fireStat( HME.bc, { fmt: safeFmt, file: t } );
|
||||
this.stat( HME.beforeCreate, { fmt: safeFmt, file: t } );
|
||||
MKDIRP.sync( PATH.dirname( t ) ); // Ensure dest folder exists;
|
||||
var RezClass = require('../core/' + safeFmt.toLowerCase() + '-resume' );
|
||||
RezClass.default().save(t);
|
||||
this.fireStat( HME.ac, { fmt: safeFmt, file: t } );
|
||||
this.stat( HME.afterCreate, { fmt: safeFmt, file: t } );
|
||||
}, this);
|
||||
|
||||
this.stat( HME.end );
|
||||
|
Loading…
Reference in New Issue
Block a user