UNPKG

affiance

Version:

A configurable and extendable Git hook manager for node projects

15 lines (12 loc) 370 B
'use strict'; const PostMergeBase = require('./Base'); const SharedNpmInstall = require('../shared/NpmInstall'); /** * @class NpmInstall * @extends PostMergeBase * @classdesc Install npm modules after a merge */ class NpmInstall extends PostMergeBase {} // Used the shared run function NpmInstall.prototype.run = SharedNpmInstall.run; module.exports = NpmInstall;