aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 5539ee7ea..a2190478e 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -280,12 +280,17 @@ module.exports = function (grunt) {
copy: {
fonts: {
+ expand: true,
src: 'fonts/*',
dest: 'dist/'
},
docs: {
- src: 'dist/*/*',
- dest: 'docs/'
+ expand: true,
+ cwd: 'dist/',
+ src: [
+ '**/*'
+ ],
+ dest: 'docs/dist/'
}
},