Skip to content

Commit

Permalink
Fixed copy:css task configuration
Browse files Browse the repository at this point in the history
The incorrect configuration was causing the creating of an extra path
`src/assets/css`.  This fix ensure that the css files are copied to
`assets/css`.
  • Loading branch information
johngully committed Oct 16, 2015
1 parent 2869e04 commit 6088504
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,12 @@ module.exports = function (grunt) {
dest: integrate()
},
css: {
src: assets("/css/*.css"),
dest: build("/pattern-library/assets/css/")
expand: true,
cwd: assets(),
src: [
"css/**"
],
dest: build("/pattern-library/assets")
},
assets: {
expand: true,
Expand Down

0 comments on commit 6088504

Please sign in to comment.