@jimpick/dat-next
Version:
Dat is the package manager for data. Easily share and version control data.
22 lines (20 loc) • 377 B
JavaScript
module.exports = {
name: 'log',
help: [
'View history and information about a dat',
'',
'Usage: dat log [dir|link]'
].join('\n'),
options: [
{
name: 'live',
boolean: true,
default: false,
help: 'View live updates to history.'
}
],
command: function (opts) {
var log = require('@jimpick/dat-log')
log(opts)
}
}