UNPKG

344 BJavaScriptView Raw
1'use strict';
2
3const TaskKitTask = require('taskkit-task');
4
5class ReloadConfigTask extends TaskKitTask {
6 get description() {
7 return 'Reload your project config files when changes are made to them';
8 }
9
10 execute(allDone) {
11 this.log('This has been deprecated, please remove');
12 allDone();
13 }
14}
15module.exports = ReloadConfigTask;