repo.or.cz
/
gitter.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Gitter migration: Setup redirects (rollout pt. 3)
[gitter.git]
/
build-scripts
/
gulpfile-clean.js
blob
860714c3ea1e794e7222a15661c57e2e090e7e50
1
'use strict'
;
2
3
var
gulp
=
require
(
'gulp'
);
4
var
del
=
require
(
'del'
);
5
6
/**
7
* Hook into the clean stage
8
*/
9
gulp
.
task
(
'clean:clean'
,
function
(
cb
) {
10
del
([
'output/'
],
cb
);
11
});