Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
Latest commit
executable file
·67 lines (60 loc) · 1.88 KB
/
Copy pathgulpfile.js
File metadata and controls
executable file
·67 lines (60 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
vargulp=require('gulp');
varbrowserSync=require('browser-sync');
varsass=require('gulp-sass');
varprefix=require('gulp-autoprefixer');
varcp=require('child_process');
varjekyll=process.platform==='win32' ? 'jekyll.bat' : 'jekyll';
varmessages={
jekyllBuild: '<span style="color: grey">Running:</span> $ jekyll build'
};
/**
* Build the Jekyll Site
*/
gulp.task('jekyll-build',function(done){
browserSync.notify(messages.jekyllBuild);
returncp.spawn(jekyll,['build','--config','_config_dev.yml'],{stdio: 'inherit'})
.on('close',done);
});
/**
* Rebuild Jekyll & do page reload
*/
gulp.task('jekyll-rebuild',['jekyll-build'],function(){
browserSync.reload();
});
/**
* Wait for jekyll-build, then launch the Server
*/
gulp.task('browser-sync',['sass','jekyll-build'],function(){
browserSync({
server: {
baseDir: '_site'
}
});
});
/**
* Compile files from _scss into both _site/css (for live injecting) and site (for future jekyll builds)
*/
gulp.task('sass',function(){
returngulp.src('_scss/main.scss')
.pipe(sass({
includePaths: ['scss'],
onError: browserSync.notify
}))
.pipe(prefix(['last 15 versions','> 1%','ie 8','ie 7'],{cascade: true}))
.pipe(gulp.dest('_site/css'))
.pipe(browserSync.reload({stream:true}))
.pipe(gulp.dest('css'));
});
/**
* Watch scss files for changes & recompile
* Watch html/md files, run jekyll & reload BrowserSync
*/
gulp.task('watch',function(){
gulp.watch(['_scss/*.scss','_scss/**/*.scss'],['sass']);
gulp.watch(['*.html','_layouts/*.html'],['jekyll-rebuild']);
});
/**
* Default task, running just `gulp` will compile the sass,
* compile the jekyll site, launch BrowserSync & watch files.
*/
gulp.task('default',['browser-sync','watch']);