From 9101db23442d4d2861fa489ff76ea21ea00edcad Mon Sep 17 00:00:00 2001 From: Kieran Sedgwick Date: Tue, 21 Jul 2015 11:34:40 -0400 Subject: [PATCH] Fixed #360 - Added newly exposed internal modules to release commits --- gruntfile.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gruntfile.js b/gruntfile.js index 1cdb72f..3a82f6b 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -171,7 +171,16 @@ module.exports = function(grunt) { files: ['package.json', 'bower.json'], commit: true, commitMessage: 'v%VERSION%', - commitFiles: ['package.json', 'bower.json', './dist/filer.js', './dist/filer.min.js'], + commitFiles: [ + 'package.json', + 'bower.json', + './dist/filer.js', + './dist/filer.min.js', + './dist/buffer.js', + './dist/buffer.min.js', + './dist/path.js', + './dist/path.min.js' + ], createTag: true, tagName: 'v%VERSION%', tagMessage: 'v%VERSION%',