From faf83ee16ca561f2f9e2c5adab6c1a113234c86e Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Fri, 20 Jul 2018 21:28:46 +0300 Subject: [PATCH] fix library manager init --- lib/modules/compiler/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/modules/compiler/index.js b/lib/modules/compiler/index.js index 9be06d56..b0d45edc 100644 --- a/lib/modules/compiler/index.js +++ b/lib/modules/compiler/index.js @@ -23,6 +23,7 @@ class Compiler { } let pluginCompilers = self.plugins.getPluginsProperty('compilers', 'compilers'); + console.dir(pluginCompilers); pluginCompilers.forEach(function (compilerObject) { available_compilers[compilerObject.extension] = compilerObject.cb; });