From eafc281025bfdd092f1f044cb2da24b48a29cb90 Mon Sep 17 00:00:00 2001 From: Michelle Tilley Date: Sat, 29 Oct 2016 15:25:24 -0700 Subject: [PATCH] :fire: console --- src/package-transpilation-registry.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/package-transpilation-registry.js b/src/package-transpilation-registry.js index 800189c5f..8767b4d72 100644 --- a/src/package-transpilation-registry.js +++ b/src/package-transpilation-registry.js @@ -19,7 +19,6 @@ Object.assign(PackageTranspilationRegistry.prototype, { specs: config, path: packagePath } - console.debug(">> adding", this.configByPackagePath[packagePath]) }, removeTranspilerConfigForPath: function (packagePath) { @@ -78,10 +77,8 @@ Object.assign(PackageTranspilationRegistry.prototype, { // only iterates four times, even if there are hundreds of configs registered. while (thisPath !== lastPath) { // until we reach the root if (config = this.configByPackagePath[thisPath]) { - console.log('got one') for (var i = 0; i < config.specs.length; i++) { spec = config.specs[i] - console.log("checking", filePath, "against", path.join(config.path, spec.glob)) if (minimatch(filePath, path.join(config.path, spec.glob))) { spec._config = config this.specByFilePath[filePath] = spec