grunt-subgrunt
Advanced tools
Comparing version 0.4.3 to 0.4.4
@@ -0,1 +1,6 @@ | ||
### v0.4.3 [view commit logs](https://github.com/tusbar/grunt-subgrunt/compare/v0.4.3...v0.4.4) | ||
* Add tests (`customCase` and `coffee`) | ||
* Update dependencies | ||
### v0.4.3 [view commit logs](https://github.com/tusbar/grunt-subgrunt/compare/v0.4.2...v0.4.3) | ||
@@ -2,0 +7,0 @@ |
@@ -46,2 +46,8 @@ 'use strict'; | ||
'test/fixtures/npmClean/tmp' | ||
], | ||
customCase: [ | ||
'test/fixtures/customCase/tmp' | ||
], | ||
coffeee: [ | ||
'test/fixtures/coffee/tmp' | ||
] | ||
@@ -96,2 +102,12 @@ }, | ||
] | ||
}, | ||
customCase: { | ||
projects: [ | ||
'test/fixtures/customCase' | ||
] | ||
}, | ||
coffee: { | ||
projects: [ | ||
'test/fixtures/coffee' | ||
] | ||
} | ||
@@ -98,0 +114,0 @@ }, |
{ | ||
"name": "grunt-subgrunt", | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"description": "Run sub-projects' grunt tasks.", | ||
@@ -32,3 +32,3 @@ "repository": { | ||
"async": "^0.9.0", | ||
"glob": "^4.0.5" | ||
"glob": "^4.3.4" | ||
}, | ||
@@ -43,4 +43,4 @@ "engines": { | ||
"grunt-contrib-clean": "^0.6.0", | ||
"load-grunt-tasks": "^1.0.0" | ||
"load-grunt-tasks": "^2.0.0" | ||
} | ||
} |
@@ -111,4 +111,25 @@ 'use strict'; | ||
test.done(); | ||
}, | ||
customCase: function (test) { | ||
test.expect(1); | ||
var actual = read('test/fixtures/customCase/tmp/output.txt'); | ||
var expected = 'success'; | ||
test.equal(expected, actual, 'should create a file with "success" in it after running the "customCase" task'); | ||
test.done(); | ||
}, | ||
coffee: function (test) { | ||
test.expect(1); | ||
var actual = read('test/fixtures/coffee/tmp/output.txt'); | ||
var expected = 'success'; | ||
test.equal(expected, actual, 'should create a file with "success" in it after running the "coffee" task'); | ||
test.done(); | ||
} | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23188
33
439
11
Updatedglob@^4.3.4