Gitter migration: Setup redirects (rollout pt. 3)
[gitter.git] / build-scripts / gulpfile-clean.js
blob860714c3ea1e794e7222a15661c57e2e090e7e50
1 'use strict';
3 var gulp = require('gulp');
4 var del = require('del');
6 /**
7 * Hook into the clean stage
8 */
9 gulp.task('clean:clean', function(cb) {
10 del(['output/'], cb);
11 });