UNPKG
generator-blt
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
Creates an Acquia BLT project.
github.com/thom8/generator-blt
thom8/generator-blt
generator-blt
/
app
/
actions
/
end.js
13 lines
(8 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
var
fs =
require
(
'fs-extra'
);
module
.
exports
=
function
(
) {
if
(
this
.
props
.
blt_clean
) {
// Remove blt directory
fs.
remove
(
this
.
destinationPath
(
this
.
buildDir
)); } };