Merge pull request #14488 from vsn4ik/gruntfile_copy_task

Gruntfile.js: Simplify copy task.
This commit is contained in:
Chris Rebert 2014-08-29 20:08:49 -07:00
commit 59d7772daa

View File

@ -291,19 +291,12 @@ module.exports = function (grunt) {
copy: {
fonts: {
expand: true,
src: 'fonts/*',
dest: 'dist/'
},
docs: {
expand: true,
cwd: './dist',
src: [
'css/*',
'js/*',
'fonts/*'
],
dest: 'docs/dist'
src: 'dist/*/*',
dest: 'docs/'
}
},