Skip to content

Commit 526e160

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 111df6d + 3f09312 commit 526e160

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function resolveConfig(config) {
7878

7979
function loadGruntParentTasks(grunt, options) {
8080
var log = function() {
81-
grunt.log.writeln(['[loadGruntParentTasks]'.magenta].concat(Array.prototype.slice.call(arguments)).join(' '));
81+
grunt.verbose.writeln(['[loadGruntParentTasks]'.magenta].concat(Array.prototype.slice.call(arguments)).join(' '));
8282
};
8383

8484
options = options || {};
@@ -129,8 +129,10 @@ function loadGruntParentTasks(grunt, options) {
129129
scripts: {}
130130
}, deps);
131131

132+
log('Writing: ' + ('' + gruntCollectionJson).cyan);
132133
grunt.file.mkdir(gruntCollection);
133134
grunt.file.write(gruntCollectionJson, JSON.stringify(newPkg, null, 2));
135+
log('loadNpmTasks: ' + 'grunt-collection'.cyan);
134136
grunt.loadNpmTasks('grunt-collection');
135137
}
136138
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "load-grunt-parent-tasks",
33
"description": "Loads de-duped grunt tasks from parent or sibling modules.",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"homepage": "https://github.com/psyrendust/load-grunt-parent-tasks",
66
"author": {
77
"name": "Larry Gordon",

0 commit comments

Comments
 (0)