UNPKG
jolly
Version:
latest (1.0.1)
1.0.1
1.0.0
Production ready boileprlate for Hapi
github.com/ravisuhag/jolly
ravisuhag/jolly
jolly
/
tasks
/
clean.js
12 lines
(8 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
const
Gulp
=
require
(
'gulp'
);
const
Del
=
require
(
'del'
);
Gulp
.
task
(
'clean'
,
function
(
) {
Del
(
'.build'
).
then
(
function
(
paths
) {
console
.
log
(
'Deleted files/folders:\n'
, paths); }); });