From b282a0f4f16bc86ef821f82dcf720385116f0989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Mon, 24 Jun 2013 16:38:21 -0700 Subject: [PATCH] The compare_size cache gets wiped out with `grunt clean` `.grunt/` is the directory that is suggested for storing task related files, and this file is not useful if it gets wiped out often. So I'm moving the compare_size cache into `.grunt/` so we keep it around longer. --- grunt/config/compare_size.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/config/compare_size.js b/grunt/config/compare_size.js index e785fe5281..fb59d94cdb 100644 --- a/grunt/config/compare_size.js +++ b/grunt/config/compare_size.js @@ -12,6 +12,6 @@ module.exports = { return gzip.zip(contents, {}).length; } }, - cache: "build/.sizecache.json" + cache: ".grunt/sizecache.json" } };