Added AI-generated logo/favicon; adjusted some navbar styles
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -20,16 +20,23 @@ function compileCoffee() {
|
||||
.pipe(gulp.dest('public/js', { sourcemaps: '.' }));
|
||||
}
|
||||
|
||||
// Copy image files to public/img/
|
||||
function copyImages() {
|
||||
return gulp.src('assets/img/**/*', {encoding: false})
|
||||
.pipe(gulp.dest('public/img/'));
|
||||
}
|
||||
|
||||
// Watch files for changes
|
||||
function watchFiles(cb) {
|
||||
gulp.watch('assets/styles/**/*.sass', compileSass);
|
||||
gulp.watch('assets/scripts/**/*.coffee', compileCoffee);
|
||||
gulp.watch('assets/img/**/*', copyImages)
|
||||
cb();
|
||||
}
|
||||
|
||||
// Chain all asset builds together
|
||||
function buildAssets() {
|
||||
return gulp.parallel(compileSass, compileCoffee);
|
||||
return gulp.parallel(compileSass, compileCoffee, copyImages);
|
||||
}
|
||||
|
||||
// Perform initial build then watch
|
||||
|
Reference in New Issue
Block a user