Skip to content

Commit

Permalink
only copy images
Browse files Browse the repository at this point in the history
fixes #14
  • Loading branch information
bmuenzenmeyer committed Feb 23, 2018
1 parent 1c5f067 commit 1df5d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/patternengine-node-underscore/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ module.exports = function(grunt) {
files: [
{ expand: true, cwd: './source/js/', src: '*', dest: './public/js/'},
{ expand: true, cwd: './source/css/', src: 'style.css', dest: './public/css/' },
{ expand: true, cwd: './source/images/', src: '*', dest: './public/images/' },
{ expand: true, cwd: './source/images/sample/', src: '*', dest: './public/images/sample/'},
{ expand: true, cwd: './source/images/', src: ['*.png', '*.jpg', '*.gif', '*.jpeg'], dest: './public/images/' },
{ expand: true, cwd: './source/images/sample/', src: ['*.png', '*.jpg', '*.gif', '*.jpeg'], dest: './public/images/sample/'},
{ expand: true, cwd: './source/fonts/', src: '*', dest: './public/fonts/'}
]
}
Expand Down

0 comments on commit 1df5d2a

Please sign in to comment.