giovanebribeiro / triggit

If a file changes on git repo, do something

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

triggit

If a file changes on git repo, do something

This package is a node port from this script (Thanks Sindre!)

So, basically this script check the git's diff tree and, if specified file changes, execute a command.

The recommended usage for this package is with another great one, called Husky:

// on package.json
{
  "husky": {
    "post-merge": "triggit \"file_to_check.js\" \"command -to run\""
  }
}

About

If a file changes on git repo, do something

License:MIT License