Gruntfile.js: Simplify copy task.

This commit is contained in:
vsn4ik 2014-08-30 01:20:48 +04:00
parent e99866447b
commit 1965f032ca
1 changed files with 2 additions and 9 deletions

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'
} }
}, },