UNPKG

224 BJavaScriptView Raw
1var watchOrServe = require( './watchOrServe' );
2
3module.exports = function ( command, gobblefile ) {
4 var dest = command._[1];
5
6 watchOrServe( gobblefile, function ( node ) {
7 return node.watch({
8 dest: dest
9 });
10 });
11};
\No newline at end of file