RyanFitzgerald / devportfolio

A lightweight, customizable single-page personal portfolio website template built with JavaScript and Sass

Home Page:https://ryanfitzgerald.github.io/devportfolio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gulp watch doesnt update scss or js

zkhan96 opened this issue · comments

The path for the watch script in the gulpfile.js is wrong:

gulp.task('watch', function() {
    gulp.watch('js/scripts.js', gulp.series('scripts'));
    gulp.watch('scss/styles.scss', gulp.series('styles'));
});

Should be:

gulp.task('watch', function() {
    gulp.watch('./js/scripts.js', gulp.series('scripts'));
    gulp.watch('./scss/styles.scss', gulp.series('styles'));
});

image

@zkhan96 do you now all step how to run this project after clone in my laptop??
because when I run this project the process is not going further after mentioning in image,

Resolved in 1.2.2