From e904e5817ffd77fd5c2171c07ed6808687cd1b6e Mon Sep 17 00:00:00 2001 From: Jorrit Schippers Date: Tue, 2 Jun 2020 10:57:33 +0200 Subject: [PATCH] Fix logging of source map output This broke in commit 1c922daba218b49d30c946cfb68cde7c9aed516b because `${dest}.map` was replaced with `dest.map`. --- tasks/postcss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/postcss.js b/tasks/postcss.js index a33b69c..c56616e 100644 --- a/tasks/postcss.js +++ b/tasks/postcss.js @@ -200,7 +200,7 @@ module.exports = (grunt) => { } grunt.file.write(mapDest, result.map.toString()); - console.log(`>> File \x1b[36m%s\x1b[0m created (source map).`, dest.map); + console.log(`>> File \x1b[36m%s\x1b[0m created (source map).`, `${dest}.map`); tally.maps += 1; }