Here is what I have so far it's just a shell as I am not sure how to do this. Would appreciate some advice.
var concat = require('gulp-concat');
var gulp = require('gulp');
var rename = require('gulp-rename');
var replace = require('gulp-replace');
gulp.task('copy-move-index', function () {
return gulp.src('index/index.html')
});
Now my index.html file is in the index folder. What I would like to do is to have a task that copies this and moves it to the parent folder.
Thanks