diff options
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'; |