Commit 59d7772d authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #14488 from vsn4ik/gruntfile_copy_task

Gruntfile.js: Simplify copy task.
parents e9986644 1965f032
Showing with 2 additions and 9 deletions
+2 -9
...@@ -291,19 +291,12 @@ module.exports = function (grunt) { ...@@ -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'
} }
}, },
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment