kibana/tasks/collect_files_to_commit.js
Court Ewing fa5aabb4b9 Use grunt root path when collecting git files
No reason to reinvent the wheel here. We already determine the root path
of the project in our grunt config, so we just use that instead.

Fixes #5781
2015-12-29 16:27:27 +00:00

15 lines
454 B
JavaScript

import filesToCommit from './utils/files_to_commit';
import { resolve } from 'path';
export default function registerCollectFilesToCommit(grunt) {
const root = grunt.config.get('root');
grunt.registerTask('collectFilesToCommit', function () {
filesToCommit(root)
.then(files => {
grunt.log.ok(`${files.length} files with changes to commit`);
grunt.config.set('filesToCommit', files);
})
.nodeify(this.async());
});
};