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.
This commit is contained in:
Paul O’Shannessy
2013-06-24 21:35:00 -07:00
parent c1886c6513
commit b282a0f4f1
+1 -1
View File
@@ -12,6 +12,6 @@ module.exports = {
return gzip.zip(contents, {}).length;
}
},
cache: "build/.sizecache.json"
cache: ".grunt/sizecache.json"
}
};