I have this npm script: git flow feature start 0.0.1 . Can I somehow automate the process of assigning the next version, that is, get the version number automatically from package.json ? In other words, run the script git flow feature start node -pe \"require('./package.json').version\" , the version number is obtained from node -pe \"require('./package.json').version\"
|