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: { copy: {
fonts: { fonts: {
expand: true,
src: 'fonts/*', src: 'fonts/*',
dest: 'dist/' dest: 'dist/'
}, },
docs: { docs: {
expand: true, src: 'dist/*/*',
cwd: './dist', dest: 'docs/'
src: [
'css/*',
'js/*',
'fonts/*'
],
dest: 'docs/dist'
} }
}, },