diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-10-06 10:38:09 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-10-06 10:38:09 +0200 |
commit | 4b7d957b47504b852bfbe84ce903602c8855ac24 (patch) | |
tree | 32bd4d30a5df2bd95130b59b9aa67b90d05140cc /gulpfile.js | |
parent | a1c03c18a52b68ea466cd8d25086f27421923e7a (diff) | |
download | gitbook-4b7d957b47504b852bfbe84ce903602c8855ac24.zip gitbook-4b7d957b47504b852bfbe84ce903602c8855ac24.tar.gz gitbook-4b7d957b47504b852bfbe84ce903602c8855ac24.tar.bz2 |
Use black links in mobi files
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gulpfile.js b/gulpfile.js index a12c2fb..2de60ca 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -8,18 +8,10 @@ var source = require('vinyl-source-stream'); gulp.task('css', function() { return mergeStream( - // Stylesheet for website - gulp.src('theme/stylesheets/website.less') + gulp.src('theme/stylesheets/*.less') .pipe(less()) .pipe(minifyCSS()) - .pipe(rename('style.css')) - .pipe(gulp.dest('theme/assets/')), - - // Stylesheet for ebooks - gulp.src('theme/stylesheets/ebook.less') - .pipe(less()) - .pipe(minifyCSS()) - .pipe(rename('print.css')) + //.pipe(rename('style.css')) .pipe(gulp.dest('theme/assets/')) ); }); |