Skip to content

Commit

Permalink
Merge pull request #2237 from thostetler/small-favicon-update
Browse files Browse the repository at this point in the history
keep original favicon directory during release
  • Loading branch information
thostetler committed Feb 17, 2022
2 parents ff179d6 + e56dc5a commit 028691f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions grunt/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,14 +340,16 @@ module.exports = function(grunt) {
'./styles/**',
'./*.html',
'./shared/dist/**',
'!./styles/favicon/**',
],
dest: 'dist/',
},
// keep favicon assets where they are in the directory structure, but
// spread out those files into the root so they can be found by browsers that auto-
// fetch favicons
{
expand: true,
cwd: 'src',
src: ['./styles/favicon/**'],
cwd: 'src/styles/favicon',
src: ['*'],
dest: 'dist/',
flatten: true,
},
Expand Down Expand Up @@ -395,7 +397,7 @@ module.exports = function(grunt) {
],
},

//give the concatenated file a cache busting hash
// give the concatenated file a cache busting hash
bumblebee_app: {
files: [
{
Expand Down

0 comments on commit 028691f

Please sign in to comment.