diff options
author | Camil Staps | 2015-05-13 17:40:21 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-13 17:40:21 +0200 |
commit | c69bb86ab6eeace2e448b26983c6e78ccef656af (patch) | |
tree | 8c7c6eb319f06ba7d9fde630e183a2fef7969ce9 /gulpfile.js | |
parent | Separate build task for own styles & 3rd-party styles (diff) |
Gulpfile: bootswatch-theme specific styles; superhero -> lumen
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js index 1aa41fc..9bd83f8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -21,7 +21,7 @@ var gulp = require('gulp'), merge = require('merge-stream'), del = require('del'); -var bootswatch_theme = 'superhero'; +var bootswatch_theme = 'lumen'; var production = false; @@ -118,8 +118,9 @@ gulp.task('3rd-party-styles', function() { gulp.task('styles', function() { var sources = [ - './src/css/style.less', - './src/css/forms.less' + './src/css/forms.less', + './src/css/profile.less', + './src/css/bootswatch-' + bootswatch_theme + '.less' ]; var dst = './build/assets/css'; |