Comparing version 0.3.7 to 0.3.8
@@ -164,2 +164,4 @@ /* | ||
'npm:publish', 'npm:cleanup'], function () {}); | ||
jake.Task['npm:definePackage'].invoke(); | ||
}; | ||
@@ -166,0 +168,0 @@ |
@@ -98,3 +98,3 @@ /* | ||
re = new RegExp(pat) | ||
re = new RegExp(pat); | ||
testFiles = self.testFiles.toArray().filter(function (f) { | ||
@@ -101,0 +101,0 @@ return (re).test(f); |
@@ -86,3 +86,10 @@ var fs = require('fs') | ||
, ret = [dir]; | ||
paths = fs.readdirSync(dir); | ||
try { | ||
paths = fs.readdirSync(dir); | ||
} | ||
catch (e) { | ||
throw new Error('Could not read path ' + dir); | ||
} | ||
paths.forEach(function (p) { | ||
@@ -98,2 +105,3 @@ var curr = path.join(dir, p); | ||
}); | ||
return ret; | ||
@@ -100,0 +108,0 @@ } |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)", | ||
@@ -13,0 +13,0 @@ "bin": { |
Sorry, the diff of this file is not supported yet
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
131866
3196