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