From 1643f1702bd425fbf7cbc239e521dfbf07a68706 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 5 Sep 2013 15:37:34 -0700 Subject: [PATCH] :racehorse: Precompile bootstrap.less A regression occurred where bootstrap.less was not being precompiled adding 200-300ms to startup since it was recompiled each time. --- CHANGELOG.md | 2 ++ Gruntfile.coffee | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a248a9e38..16180bbcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +* Fixed: Precompile bootstrap.less for faster startup + * Fixed: Save sometimes failing from an editor that was split * Fixed: Search results not appearing when set to exclude ignores diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 96b46f1e1..12ce369bb 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -40,6 +40,7 @@ module.exports = (grunt) -> 'src/**/*.less' 'static/**/*.less' 'themes/**/*.less' + 'vendor/bootstrap/less/bootstrap.less' ] dest: appDir ext: '.css'