From e5c45f1225c103c7a540696adfd5e8450a2dbe2a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 27 Jun 2014 11:09:18 -0400 Subject: [PATCH] refactor(mellow) commander -> flop --- lib/server/mellow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/server/mellow.js b/lib/server/mellow.js index d2cf3972..d9deb043 100644 --- a/lib/server/mellow.js +++ b/lib/server/mellow.js @@ -9,7 +9,7 @@ win = require(DIR_SERVER + 'win'), format = require(DIR_SERVER + 'format'), - commander = require(DIR_SERVER + 'commander'); + flop = require(DIR_SERVER + 'flop'); exports.read = read; exports.convertPath = convertPath; @@ -18,7 +18,7 @@ if (isWin && path === '/') getRoot(callback); else - commander.getDirContent(path, callback); + flop.read(path, callback); } function getRoot(callback) {