forked from froala/design-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
53 lines (45 loc) · 1.21 KB
/
gulpfile.js
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
var gulp = require('gulp');
var watch = require('gulp-watch');
var scss = require("gulp-scss");
var copy = require('gulp-copy');
var connect = require('gulp-connect');
var del = require('del');
var vinylPaths = require('vinyl-paths');
gulp.task('clean', function () {
del.sync('dist/**/*');
})
gulp.task('scss', function () {
gulp.src(['src/scss/froala_blocks.scss'])
.pipe(scss())
.pipe(gulp.dest("dist/css"))
});
gulp.task('html', function () {
gulp.src(['src/html/**/*.html'])
.pipe(gulp.dest('dist'))
})
gulp.task('imgs', function () {
gulp.src(['src/imgs/**/*'])
.pipe(gulp.dest('dist/imgs'))
})
gulp.task('watch', [], function() {
watch('dist').pipe(connect.reload());
watch('src/html', function () {
gulp.start(['html']);
})
watch('src/imgs', function () {
gulp.start(['imgs']);
})
watch('src/scss', function () {
gulp.start(['scss']);
});
})
gulp.task('connect', function () {
connect.server({
root: ['dist', 'node_modules', 'screenshots'],
port: 8001,
livereload: true
});
});
gulp.task('build', ['clean', 'html', 'imgs', 'scss']);
gulp.task('default', ['clean', 'html', 'imgs', 'scss', 'connect', 'watch'], function () {
});