UNPKG

269 BJavaScriptView Raw
1const { ifElse, propSatisfies } = require('ramda');
2const devServer = require('./devServer');
3const watch = require('./watch');
4
5// start :: Object options -> Future (Array Error) Function
6module.exports = ifElse(propSatisfies(Boolean, 'devServer'), devServer, watch);