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
/
clone.js
17 lines
(11 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'
;
var
clone =
require
(
'git-clone'
);
module
.
exports
=
function
(
) {
var
done =
this
.
async
();
clone
(
'https://github.com/acquia/blt.git'
,
this
.
destinationPath
(
this
.
buildDir
), {
shallow
:
true
},
function
(
) {
done
(); } ); };