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