12 lines
162 B
JavaScript
12 lines
162 B
JavaScript
|
|
const shell = {
|
|
git_add_all: {
|
|
command: [
|
|
'git add --all',
|
|
'git commit -m "Bump to <%= pkg.version %>"'
|
|
].join( '&&' )
|
|
}
|
|
};
|
|
|
|
module.exports = shell;
|