Another logging

This commit is contained in:
Michelle Tilley
2017-05-17 20:56:24 +02:00
parent 86d45a5b9b
commit ff354ec3a7

View File

@@ -19,6 +19,7 @@ class PackageTranspilationRegistry {
}
addTranspilerConfigForPath (packagePath, packageName, packageMeta, config) {
console.log(">>>>> ADDING: " + packagePath)
this.configByPackagePath[packagePath] = {
name: packageName,
meta: packageMeta,
@@ -28,6 +29,7 @@ class PackageTranspilationRegistry {
}
removeTranspilerConfigForPath (packagePath) {
console.log(">>>>> REMOVING: " + packagePath)
delete this.configByPackagePath[packagePath]
const packagePathWithSep = packagePath.endsWith(path.sep) ?
packagePath : packagePath + path.sep;