123456789101112131415161718192021222324252627282930313233343536 |
- (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;
- })();
|