mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
'use strict';
|
|
|
|
var gulp = require( 'gulp' );
|
|
|
|
gulp.task( 'watch', ['sass','browserSync'], function () {
|
|
var config = require( '../config' );
|
|
gulp.watch( config.paths.jsPath, ['js'] );
|
|
gulp.watch( config.paths.sassPath, ['sass'] );
|
|
} );
|