forked from tastejs/PropertyCross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
39 lines (36 loc) · 925 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
hub: {
all: {
src: ["*/Gruntfile.js"]
}
}
});
grunt.registerTask("install", "Perform npm install on all subdirectories", function() {
var i, directory, install,
modules = grunt.file.expand("*/package.json"),
done = this.async();
install = function(modules) {
var module;
if (modules.length) {
module = modules[0];
grunt.log.writeln("Running npm install in "+module);
grunt.util.spawn({
cmd: "npm",
args: ["install"],
opts: {
cwd: module.substring(0, module.lastIndexOf("/"))
}
}, function() {
install(modules.slice(1));
});
} else {
done();
}
}
install(modules);
});
grunt.loadNpmTasks("grunt-hub");
grunt.registerTask("default", ["hub"]);
};