From 73634617ad43b919d63fef99e4fcff34d8917aee Mon Sep 17 00:00:00 2001 From: Filip Date: Thu, 24 Oct 2013 16:37:05 +0200 Subject: [PATCH] Change from path.exists to fs.exists because it's deprecated in Node >= 0.8 --- compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.js b/compiler.js index a7123d9..4cd7c74 100644 --- a/compiler.js +++ b/compiler.js @@ -950,7 +950,7 @@ helpers.mkdirp = mkdirp = (function(){ } cb || (cb = function(){}); p = expand(p); - return path.exists(p, function(exists){ + return fs.exists(p, function(exists){ var ps, _p; if (exists) { return cb(null);