mirror of
				https://github.com/vvsviridov/enm-cli.git
				synced 2025-11-03 21:53:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
const chalk = require('chalk')
 | 
						|
 | 
						|
 | 
						|
function logCommit(commitResult) {
 | 
						|
  if (commitResult.title === 'Success') {
 | 
						|
    console.log(chalk.green(commitResult.title))
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = logCommit |