Skip to content

Instantly share code, notes, and snippets.

@jackrugile
Created April 4, 2016 22:59
Show Gist options
  • Save jackrugile/6c15d4cd082674ee856ae6a48169a538 to your computer and use it in GitHub Desktop.
Save jackrugile/6c15d4cd082674ee856ae6a48169a538 to your computer and use it in GitHub Desktop.
Gulp Moving Files
gulp.task( 'fonts', function() {
gulp.src('src/fnt/**/*')
.pipe( gulp.dest( dest + 'fnt' ) );
});
gulp.task('watch', function() {
gulp.watch( 'src/fnt/**/*', [ 'fonts' ] );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment