Skip to content

Commit 5b6c6f1

Browse files
committed
chore(grunt) Include misc folder in the app
1 parent b57cd6c commit 5b6c6f1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Gruntfile.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,12 @@ module.exports = function(grunt) {
330330
cwd: '.temp',
331331
dest: '<%= yeoman.dist %>/',
332332
src: '**/*'
333+
},
334+
misc: {
335+
expand: true,
336+
cwd: 'misc',
337+
dest: '<%= yeoman.dist %>/misc',
338+
src: ['**/*', '!assets/**', '!**/*.jpg', '!**/*.psd']
333339
}
334340
},
335341

@@ -566,7 +572,8 @@ module.exports = function(grunt) {
566572
'concurrent:server',
567573
'autoprefixer',
568574
'newer:copy:app',
569-
'newer:copy:tmp'
575+
'newer:copy:tmp',
576+
'newer:copy:misc'
570577
]);
571578

572579

0 commit comments

Comments
 (0)