From 87a23ca12bee4b13847094ae40cbd6493418d452 Mon Sep 17 00:00:00 2001 From: Sylvain MINA Date: Thu, 24 Sep 2015 12:28:56 +0200 Subject: [PATCH] Add a line about the file beeing processed Help locate crash, see #69 --- lib/ember-migrator.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ember-migrator.js b/lib/ember-migrator.js index 149f885..7fc1b80 100644 --- a/lib/ember-migrator.js +++ b/lib/ember-migrator.js @@ -338,6 +338,7 @@ EmberMigrator.prototype.splitFile = function(filePath) { }; EmberMigrator.prototype.processFile = function(typedExport){ + this.writeLine(chalk.grey('Processing file ' + key)); typedExport.convertedFile = this.convertFile(typedExport); };