UNPKG
ng-factory
Version:
latest (1.1.0)
1.1.0
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
0.5.3
0.5.2
0.5.1
0.5.0
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
AngularJS industrialized development
github.com/ng-tools/ng-factory
ng-tools/ng-factory
ng-factory
/
lib
/
tasks
/
test
/
clean.js
13 lines
(8 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
var
del =
require
(
'del'
);
module
.
exports
=
function
(
gulp, config
) {
var
test = config.
test
; gulp.
task
(
'ng:test/clean'
,
function
(
cb
) {
del
([test.
tmp
], cb); }); };