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