mirror of
https://gitlab.silvrtree.co.uk/martind2000/aodb.git
synced 2025-02-15 01:29:16 +00:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
|
var gulp = require('gulp');
|
|||
|
|
|||
|
module.exports = gulp.task('copy-index', function () {
|
|||
|
return gulp.src('./app/index.html')
|
|||
|
.pipe(gulp.dest('./www/'));
|
|||
|
});
|