14 lines
		
	
	
		
			289 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			289 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as express from 'express';
 | 
						|
const git = require('git-last-commit');
 | 
						|
 | 
						|
module.exports = async (req: express.Request, res: express.Response) => {
 | 
						|
	// Get commit info
 | 
						|
	git.getLastCommit((err, commit) => {
 | 
						|
		res.send({
 | 
						|
			commit: commit
 | 
						|
		});
 | 
						|
	}, {
 | 
						|
		dst: `${__dirname}/../../`
 | 
						|
	});
 | 
						|
};
 |