biofriction-wp-theme/node_modules/foundation-sites/gulp/tasks/copy.js

10 lines
205 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
var gulp = require('gulp');
var CONFIG = require('../config.js');
// Copies static assets
gulp.task('copy', function() {
return gulp.src(CONFIG.ASSETS_FILES)
.pipe(gulp.dest('_build/assets'));
});