1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2017-05-16 13:34:00 +02:00

21 lines
222 B
JavaScript

'use strict';
/**
* Task: html
*
* Copy all markup files.
*/
var gulp = require('gulp');
// == Register task
gulp.task('html', function(){
// Copy main app
gulp.src('*.html').pipe(gulp.dest('build/'));
});