(function () { 'use strict'; /** * Defining task dependencies. */ var dependancies = [ 'browserSync', 'watch:stylus' ]; /** * Registering task name. */ var task = function ( grunt ) { grunt.registerTask('serve', dependancies); }; /** * Exporting task. */ module.exports = task; })();