Check whether current branch code ahead of master before building
npm i check-code-ahead-of-masterAdd a command before your building command in package.json, for example
scripts: {
"build": "ccaom && webpack...",The ccaom command does following things:
-
if git has remote repository, the command will check remote
origin/masterbranch otherwise will check localmaterbranch. -
if current branch is behind master, the command will throw an error and abort the process.
MIT