aodb/build/gulp/copy-index.js

7 lines
167 B
JavaScript
Raw Normal View History

2016-12-22 00:00:06 +00:00
var gulp = require('gulp');
module.exports = gulp.task('copy-index', function () {
return gulp.src('./app/index.html')
.pipe(gulp.dest('./www/'));
});