UNPKG

233 BJavaScriptView Raw
1var watchOrServe = require( './watchOrServe' );
2
3module.exports = function ( command, gobblefile ) {
4 var port = command.port || 4567;
5
6 watchOrServe( gobblefile, function ( node ) {
7 return node.serve({
8 port: port
9 });
10 });
11};