UNPKG

angularjs-dropdown-multiselect

Version:

This directive gives you a Bootstrap Dropdown with the power of AngularJS directives.

30 lines (24 loc) 684 B
/** * Welcome to your gulpfile! * The gulp tasks are split into several files in the gulp directory * because putting it all here was too long */ 'use strict'; var fs = require('fs'); var gulp = require('gulp'); /** * This will load all js or coffee files in the gulp directory * in order to load all gulp tasks */ fs.readdirSync('./gulp').filter(function(file) { return (/\.(js|coffee)$/i).test(file); }).map(function(file) { require('./gulp/' + file); }); /** * Default task clean temporaries directories and launch the * main optimization build task */ gulp.task('default', ['clean'], function () { gulp.start('build'); });