client/annotviz/gulp/tasks/clean.js
author rougeronj
Thu, 22 Jan 2015 16:16:54 +0100
changeset 123 d8ef840eaf68
parent 85 eff9460bd4f2
permissions -rw-r--r--
get the correct json category depending on the timestamp

'use strict';

var gulp = require('gulp');
var rimraf = require('gulp-rimraf');

// Clean
gulp.task('clean', function () {
    return gulp.src(['.tmp', 'dist/css', 'dist/js', 'dist/img'], {read: false}).pipe(rimraf());
});