const gulp = require("gulp"); const connect = require("gulp-connect"); gulp.task("watchs",function(){ gulp.watch("index.html",gulp.series("copy")); gulp.watch("style/index.sass",gulp.series("sass")); gulp.watch("*.js",g...