diff --git a/src/fs-utils.coffee b/src/fs-utils.coffee index 77a32b62c..1d96cb523 100644 --- a/src/fs-utils.coffee +++ b/src/fs-utils.coffee @@ -6,7 +6,7 @@ async = require 'async' rimraf = require 'rimraf' path = require 'path' -module.exports = +fsExtensions = # Make the given path absolute by resolving it against the # current working directory. absolute: (relativePath) -> @@ -301,3 +301,5 @@ module.exports = CSON.readFile(objectPath, done) else @readPlist(objectPath, done) + +module.exports = _.extend(fsExtensions, fs)