bionode-watermill
bionode-watermill copied to clipboard
Basic CLI
- [ ]
--resume
option - [ ]
--rerun
option
We should add:
- [ ]
--logger
option for redux-logger outputs which can be quite useful to debug. This is controlled inlib/watermill.js
.
Moreover, maybe this CLI should be transversal to other bionode modules, i.e, use the same npm package.
Another thing to take into account when implementing this option, is that examples/pipelines
will become broken. And something like the following should be used in those pipelines scripts:
const watermill = require('bionode-watermill')
const { task } = watermill({ ...options })
Also in that case, doing
const watermill = require('bionode-watermill')
const { task } = watermill({ /* options */ })
const { join } = watermill({ /* options */ })
would be weird because the task
and join
would be connected to different store
s