-
-
Save ElmiraMukhamedjanova/ff74793388738c8169e4106d7c6c239e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require("gulp"), | |
| browserSync = require('browser-sync'); | |
| // Сервер | |
| gulp.task('server', function () { | |
| browserSync({ | |
| port: 9000, | |
| server: { | |
| baseDir: 'app' | |
| } | |
| }); | |
| }); | |
| // Слежка | |
| gulp.task('watch', function () { | |
| gulp.watch([ | |
| 'app/*.html', | |
| 'app/js/**/*.js', | |
| 'app/css/**/*.css' | |
| ]).on('change', browserSync.reload); | |
| }); | |
| // Задача по-умолчанию | |
| gulp.task('default', ['server', 'watch']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment