kibana/tasks/sterilize.js
Spencer 98a1c5a0f1
[6.x] Upgrade to eslint 4 (#14862) (#14951)
* [eslint] upgrade to 4.10.0

* [eslint-config-kibana] limit jest config to jest test files

* [ui_framework] remove trailing comma from rest-spreads

* [dashboard/tests] tag jest helpers with .test.js suffix

* explicitly import expect.js where used

* [eslint] apply auto-fixes

* [eslint] manually add/wrap some parens for compliance

* [npm] point to local packages for testing/review

* [jest] remove .test extension from jest helpers

* [ui_framework] fix trailing comma removal from 3bc661a1c8

* [packages] upgrade eslint packages
2017-11-14 20:20:37 -07:00

40 lines
1 KiB
JavaScript

import { bgRed, white } from 'ansicolors';
import { execSync } from 'child_process';
import { createInterface } from 'readline';
export default function (grunt) {
grunt.registerTask('sterilize', function () {
const cmd = 'git clean -fdx';
const ignores = [
'.aws-config.json',
'config/kibana.dev.yml'
]
.concat(String(grunt.option('ignore') || '').split(','))
.map(f => `-e "${f.split('"').join('\\"')}"`)
.reduce((all, arg) => `${all} ${arg}`, '');
const stdio = 'inherit';
execSync(`${cmd} -n ${ignores}`, { stdio });
const rl = createInterface({
input: process.stdin,
output: process.stdout
});
const danger = bgRed(white('DANGER'));
rl.on('close', this.async());
rl.question(`\n${danger} Do you really want to delete all of the above files?, [N/y] `, function (resp) {
const yes = resp.toLowerCase().trim()[0] === 'y';
rl.close();
if (yes) {
execSync(`${cmd} ${ignores}`, { stdio });
}
});
});
}