DEV Community

Dimitrios Desyllas
Dimitrios Desyllas

Posted on

Why I am unable to trigger the custom version bump script upon merging in master?

I try to make a script to run once I merge my code into master as asked bellow:

I have the following package.json:

{
  "name": "@ellakcy/fa-checkbox"
  "author": "Cypriot Free Software Foundation",
  "license": "MIT",
  "version": "0.0.11",
  "description": "CSS and SASS lib that shows a shows beautifull checkboxed using fontawesome",
  "main": "index.html",
  "keywords": [
    "css",
    "checkbox",
    "fontawesome"
  ],
  "scripts": {
    "start": "npm-run-all --parallel watch-css start-server",
    "watch-css": "sass --watch scss:dev",
    "start-server":

But according to this asciicast shown on how I do it I fail to do so.

Therefore I need your help.

Top comments (0)