Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (15 sloc)
630 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************* | |
| Define Sub-Tasks | |
| *******************************/ | |
| module.exports = function(gulp) { | |
| var | |
| // build sub-tasks | |
| buildJS = require('./../build/javascript'), | |
| buildCSS = require('./../build/css'), | |
| buildAssets = require('./../build/assets') | |
| ; | |
| // in case these tasks are undefined during import, less make sure these are available in scope | |
| gulp.task('build-javascript', 'Builds all javascript from source', buildJS); | |
| gulp.task('build-css', 'Builds all css from source', buildCSS); | |
| gulp.task('build-assets', 'Copies all assets from source', buildAssets); | |
| }; |