index.js |
|
/** This file is used to include the job commands into yargs. */
(function() {
var scripter = require('../../../lib/index');
exports.addTo = function(yargs) {
return yargs.command('test', 'undefined', scripter.job('test', '/home/alex/github/node-scripter/var/lib/script/test.js'));
};
}).call(this);
|