mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-13 05:55:26 +00:00
update
This commit is contained in:
31
node_modules/bs-recipes/recipes/gulp.sass/gulpfile.js
generated
vendored
Normal file
31
node_modules/bs-recipes/recipes/gulp.sass/gulpfile.js
generated
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
var gulp = require('gulp');
|
||||
var browserSync = require('browser-sync').create();
|
||||
var sass = require('gulp-sass');
|
||||
var reload = browserSync.reload;
|
||||
|
||||
var src = {
|
||||
scss: 'app/scss/*.scss',
|
||||
css: 'app/css',
|
||||
html: 'app/*.html'
|
||||
};
|
||||
|
||||
// Static Server + watching scss/html files
|
||||
gulp.task('serve', ['sass'], function() {
|
||||
|
||||
browserSync.init({
|
||||
server: "./app"
|
||||
});
|
||||
|
||||
gulp.watch(src.scss, ['sass']);
|
||||
gulp.watch(src.html).on('change', reload);
|
||||
});
|
||||
|
||||
// Compile sass into CSS
|
||||
gulp.task('sass', function() {
|
||||
return gulp.src(src.scss)
|
||||
.pipe(sass())
|
||||
.pipe(gulp.dest(src.css))
|
||||
.pipe(reload({stream: true}));
|
||||
});
|
||||
|
||||
gulp.task('default', ['serve']);
|
Reference in New Issue
Block a user