FIX: ensure we clear emoji cache before recompilation

This commit is contained in:
Joffrey JAFFEUX 2017-07-05 10:36:06 +02:00
parent 25d70ec900
commit 0a478905b9
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@ task 'assets:precompile:before' do
puts "Purging temp files"
`rm -fr #{Rails.root}/tmp/cache`
# Ensure we clear emoji cache before pretty-text/emoji/data.js.es6.erb
# is recompiled
Emoji.clear_cache
if Rails.configuration.assets.js_compressor == :uglifier && !`which uglifyjs`.empty? && !ENV['SKIP_NODE_UGLIFY']
$node_uglify = true
end