refactor: remove report task

This commit is contained in:
Karl-Philipp Wulfert
2019-04-17 15:45:05 +02:00
parent 87801ee921
commit d86236e944

View File

@@ -19,7 +19,6 @@ import {existsSync, readFileSync} from 'fs';
import {join} from 'path';
import {GITLAB_API_URL} from './configuration';
import {remind} from './tasks/remind';
import {report} from './tasks/report';
import {tidy} from './tasks/tidy';
import {unlabel} from './tasks/unlabel';
@@ -43,13 +42,6 @@ if (existsSync(join(__dirname, 'package.json'))) {
commander.version(JSON.parse(readFileSync(join(__dirname, '..', 'package.json')).toString()).version);
}
commander
.command('report <label>')
.action(async (label: string) => {
await report(gitlabApi, label);
logger.ok('Done!');
});
commander
.command('unlabel')
.action(async () => {