client/annotviz/gulp/tasks/html.js
author rougeronj
Thu, 16 Apr 2015 12:15:33 +0200
changeset 153 60bd2b36b9dc
parent 85 eff9460bd4f2
permissions -rw-r--r--
put showTime as an option and add it to static pianoroll template on server

'use strict';

var config = require('../config');
var gulp = require('gulp');
var size = require('gulp-size');

gulp.task('html', function () {
  return gulp.src('app/*.html')
    .pipe(gulp.dest(config.dist))
    .pipe(size());
});