From e7030ba4b38a42fc2d5db2befea9bb20d5e2fad0 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 10 Apr 2015 14:03:24 -0700 Subject: [PATCH] Compile bootstrap before prebuilding cache --- build/tasks/prebuild-less-task.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tasks/prebuild-less-task.coffee b/build/tasks/prebuild-less-task.coffee index 2fa5f16db..31adccc0a 100644 --- a/build/tasks/prebuild-less-task.coffee +++ b/build/tasks/prebuild-less-task.coffee @@ -21,6 +21,8 @@ module.exports = (grunt) -> rm(path.join(appDir, 'node_modules', 'bootstrap', 'less')) grunt.registerMultiTask 'prebuild-less', 'Prebuild cached of compiled LESS files', -> + compileBootstrap() + prebuiltConfigurations = [ ['atom-dark-ui', 'atom-dark-syntax'] ['atom-dark-ui', 'atom-light-syntax'] @@ -94,5 +96,3 @@ module.exports = (grunt) -> for file in themeMains grunt.verbose.writeln("File #{file.cyan} created in cache.") cssForFile(file) - - compileBootstrap()