UNPKG
grunt-subgrunt
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.0
1.0.0
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
0.0.1
Run sub-projects' grunt tasks.
github.com/tusbar/grunt-subgrunt
tusbar/grunt-subgrunt
grunt-subgrunt
/
test
/
fixtures
/
customCase
/
gruntFile.js
16 lines
(12 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'
var
fs =
require
(
'fs'
)
module
.
exports
=
function
(
grunt
) { grunt.
registerTask
(
'default'
,
function
(
) {
var
done =
this
.
async
() fs.
mkdir
(
'tmp'
,
function
(
) { fs.
writeFile
(
'tmp/output.txt'
,
'success'
,
function
(
) {
done
() }) }) }) }