Created
January 31, 2017 11:47
-
-
Save marcelkalveram/fd409cd5e48471c8e3430e98d7aacff9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// git commit -m '[version] bump | |
'use strict' | |
let exec = require('child_process').exec | |
let packagePath = '../package.json' | |
let packageInfo = require(packagePath) | |
let version = packageInfo.version | |
exec(`git commit -m "[release] v${version}"`, function (err, stdout, stderr) { | |
console.log('git result:', stdout) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment