From 637c53dbb4f5b55726d04da362583da72b02e8cd Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 10 Feb 2015 18:54:13 -0800 Subject: [PATCH] Log total module count --- build/tasks/output-module-counts.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/build/tasks/output-module-counts.coffee b/build/tasks/output-module-counts.coffee index df4263a62..266656720 100644 --- a/build/tasks/output-module-counts.coffee +++ b/build/tasks/output-module-counts.coffee @@ -18,6 +18,7 @@ module.exports = (grunt) -> diff = name1.localeCompare(name2) if diff is 0 diff + console.log "Total Modules: #{sortedNames.length}" sortedNames.forEach (name) -> {count, versions} = modules[name] grunt.log.error "#{name}: #{count} (#{Object.keys(versions).join(', ')})" if count > 1