Comparing version 0.0.7 to 0.1.0
@@ -75,5 +75,11 @@ #!/usr/bin/env node | ||
Commands.help = function () { | ||
Commands.help = function (opts) { | ||
var ev = new EventEmitter() | ||
var f = fs.createReadStream(path.join(__dirname, 'help'), 'utf8') | ||
var file = 'help' | ||
if (opts.argv.remain.length > 0) { | ||
var command = COMMANDS[opts.argv.remain.shift()] | ||
if (command && command != 'help') | ||
file += '-' + command | ||
} | ||
var f = fs.createReadStream(path.join(__dirname, file), 'utf8') | ||
f.pipe(process.stderr) | ||
@@ -80,0 +86,0 @@ f.on('end', function () { ev.emit('finish') }) |
{ | ||
"name": "mekano", | ||
"version": "0.0.7", | ||
"version": "0.1.0", | ||
"description": "maintain, update and regenerate groups of files", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,5 +5,2 @@ # ![mekano](https://cdn.mediacru.sh/0hecryCVR3vS.svg) | ||
**This is still an alpha version of the tool, keep in mind the current version | ||
is not feature-complete. Work is in progress toward that goal.** | ||
Synopsis | ||
@@ -10,0 +7,0 @@ -------- |
Sorry, the diff of this file is not supported yet
116450
57
2721
429