File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ module.exports = {
1212 } ,
1313 css : {
1414 src : [
15- 'css/' ,
16- '!<%= paths.cssSrc %>' ,
15+ 'css/* ' ,
16+ '!<%= paths.cssSrc %>** ' ,
1717 '<%= paths.cssSrc %>vendor'
1818 ]
1919 } ,
2020 fonts : {
2121 src : [
22- 'font/' ,
23- '!<%= paths.fontSrc %>' ,
22+ 'font/* ' ,
23+ '!<%= paths.fontSrc %>** ' ,
2424 '<%= paths.fontSrc %>vendor'
2525 ]
2626 } ,
@@ -31,15 +31,15 @@ module.exports = {
3131 } ,
3232 js : {
3333 src : [
34- 'js/' ,
35- '!<%= paths.jsSrc %>' ,
34+ 'js/* ' ,
35+ '!<%= paths.jsSrc %>** ' ,
3636 '<%= paths.jsSrc %>vendor'
3737 ]
3838 } ,
3939 images : {
4040 src : [
41- 'images/' ,
42- '!images/src/ '
41+ 'images/* ' ,
42+ '!<%= paths.imagesSrc %>** '
4343 ]
4444 } ,
4545 languages : {
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ module.exports = function() {
1414 jsSrc : 'js/src/' ,
1515 cssSrc : 'css/src/' ,
1616 fontSrc : 'font/src/' ,
17+ imagesSrc : 'images/src/' ,
1718 bower : 'bower/' ,
1819 grunt : 'config/grunt/' ,
1920 tasks : 'config/grunt/tasks/' ,
You can’t perform that action at this time.
0 commit comments