-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
47 lines (36 loc) · 1.26 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
var /*webserver = require('gulp-webserver')*/
connect = require('gulp-connect'),
gulp = require('gulp'),// 載入 gulp
bourbon = require("node-bourbon").includePaths,
plumber = require('gulp-plumber'),
sass = require('gulp-sass'); // 載入 gulp-sass
gulp.task('webserver', function () {
connect.server({
port: 8080,
livereload: true
});
});
gulp.task('watch', function () {
gulp.watch('css/*.scss', ['sass']);
gulp.watch('*.html', ['html']);
gulp.watch('js/*.js', ['js']);
});
gulp.task('sass', function () {
gulp.src('css/*.scss') // 指定要處理的 Scss 檔案目錄
.pipe(plumber())
.pipe(sass({ // 編譯 Scss
outputStyle: 'compressed',
includePaths: bourbon,
}))
.pipe(gulp.dest('css')) // 指定編譯後的 css 檔案目錄
.pipe(connect.reload()); // 當檔案異動後自動重新載入頁面
});
gulp.task('html', function () {
gulp.src('*.html')
.pipe(connect.reload()); // 當檔案異動後自動重新載入頁面
});
gulp.task('js', function () {
gulp.src('js/*.js')
.pipe(connect.reload()); // 當檔案異動後自動重新載入頁面
});
gulp.task('default', ['webserver', 'watch', 'html', 'sass', 'js']);