UNPKG
gulp-archy
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Render a buffered files structures with archy
github.com/maetchkin/gulp-archy
gulp-archy
/
gulpfile.js
19 lines
(16 loc)
•
314 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict'
;
var
archy =
require
(
'./index.js'
), gulp =
require
(
'gulp'
); gulp.
task
(
'default'
,
function
(
cb
) {
return
gulp .
src
( [
'test/**/*'
], {
base
: process.
cwd
()} ) .
pipe
(
archy
() ); } );