mocha-jscs
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -0,1 +1,9 @@ | ||
## 1.2.0 (2015-06-17) | ||
#### Features | ||
* **index.js:** switch to checkPath for both files and directories ([2274e3b5](https://github.com/tomchentw/mocha-jscs.git/commit/2274e3b5dfda29545c93ea2b4a714b808791ffe6)) | ||
## 1.1.0 (2015-04-29) | ||
@@ -2,0 +10,0 @@ |
@@ -20,3 +20,3 @@ "use strict"; | ||
it("should pass for " + ("." === path ? "working directory" : path), function (done) { | ||
checker.checkDirectory(path) | ||
checker.checkPath(path) | ||
.then(formatErrors, handleRejection) | ||
@@ -23,0 +23,0 @@ .then(done); |
{ | ||
"__template__gist__": "https://gist.github.com/tomchentw/0dc24c30955c1a6c94d4#file-package-json", | ||
"name": "mocha-jscs", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Add jscs as mocha test in your test suite.", | ||
@@ -28,6 +28,3 @@ "main": "lib/index.js", | ||
}, | ||
"license": { | ||
"type": "MIT", | ||
"url": "http://tomchentw.mit-license.org" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
@@ -34,0 +31,0 @@ "url": "https://github.com/tomchentw/mocha-jscs/issues" |
@@ -8,2 +8,3 @@ "use strict"; | ||
require("../lib")(["./lib/"]); | ||
require("../lib")(["./lib/index.js"]); | ||
}); |
15611
46