mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
/**
|
|
* Stupid command to run exit. 'q' is way shorter, like less.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function(vorpal, config) {
|
|
vorpal
|
|
.command('q')
|
|
.hidden()
|
|
.action((args, cb) => {
|
|
vorpal.exec('exit').then(cb);
|
|
});
|
|
};
|