diff --git a/lib/createInlinePluginCreator.js b/lib/createInlinePluginCreator.js index f2481e9..7100ea6 100644 --- a/lib/createInlinePluginCreator.js +++ b/lib/createInlinePluginCreator.js @@ -37,6 +37,7 @@ function createInlinePluginCreator(packages, multiContext) { const manifest = getManifest(path); dbg("name=", manifest.name); + dbg("path=", path); // Loop through localDeps to update dependencies/devDependencies/peerDependencies in manifest. pkg._localDeps.forEach(d => { // Get version of dependency. diff --git a/lib/debug.js b/lib/debug.js index e89726e..75f99ed 100644 --- a/lib/debug.js +++ b/lib/debug.js @@ -5,9 +5,9 @@ const logger = getLogger({ stdout: process.stdout, stderr: process.stderr }); let opts; const createDebugger = prefix => (...input) => { - if (get(opts, prefix || "")) { - return logger.log(...input); - } + // if (get(opts, prefix || "")) { + return logger.log(...input); + // } }; const debug = createDebugger();