We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all in the title
The text was updated successfully, but these errors were encountered:
An example as follow:
const gulp = require('gulp'); const connect = require('gulp-connect') function serve(){ const options={ port:8080, livereload:true, }; connect.server(options); } function html(){ return gulp.src('./src/html/*.html') .pipe(gulp.dest('./dist')) .pipe(connect.reload() } function css(){ return gulp.src('./src/css/*.css') .pipe(gulp.dest('./dist/css')) .pipe(connect.reload()) } function js(){ return gulp.src('./src/js/*.js') .pipe(gulp.dest('./dist/js')) .pipe(connect.reload()) } function watch(){ gulp.watch('./src/html/*.html',html); gulp.watch('./src/css/*.css',css); gulp.watch('./src/js/*.js',js); } exports.default = gulp.series(html, css, js, gulp.parallel(watch,serve));
Sorry, something went wrong.
No branches or pull requests
all in the title
The text was updated successfully, but these errors were encountered: