From 5024956e6f2b97436ab01d0cfe4bd84f81b71f25 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Tue, 7 Jan 2014 20:23:39 +0100 Subject: [PATCH] correctly cache sprite images --- Gruntfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index c571f2c5c2..38d3543b77 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -36,7 +36,10 @@ module.exports = function(grunt) { copy: { build: { - files: [{expand: true, cwd: 'public/', src: 'favicon.ico', dest: 'build/'}] + files: [ + {expand: true, cwd: 'public/', src: 'favicon.ico', dest: 'build/'}, + {expand: true, cwd: 'public/', src: 'bower_components/habitrpg-shared/dist/spritesmith-*.png', dest: 'build/'} + ] } },