I would like that, Gitter is nice too so we'd be able to monitor both but Slack for active participants in the reforging could be very useful.
Thats what I meant, gitter for the user community, slack for the builders (with integrations to github, travis, and else)
@hongaar
:wave: hi all. Is anybody aware if a coordinated attempt to keep vorpal alive?
Would you be open to be part of it? :)
src
for our tests.
node myapp.js
will open an interactive session and prompt for commands; node myapp.js mycmd myarg
will run a command and return to the command-prompt. Is there a way of giving one or more commands on the command-line and then switching to accepting commands interactively? At the moment, after command-definition, I've got vorpal.parse( process.argv ).show() ;
. TIA
const commands = require('require-all')(__dirname + '/commands');
const _ = require("lodash")
_.forOwn(commands, function(value, key) {
vorpal.use(value)
});
each command just follows this format:
module.exports = function(vorpal, options){
// insert vorpal command here
}