Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2015-02-20 12:22:06 +0300
committerXhmikosR <xhmikosr@gmail.com>2015-02-20 12:35:39 +0300
commitb8a0ea12247f7e0de643ff445eaee8795575610c (patch)
treed74a68d989a10191eb5d12a74a6e22ab0cf10b55 /Gruntfile.js
parent504435e0b07e6c638df995959bb1f0a4a182ceca (diff)
Update dependencies.
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 5539ee7eaa..a2190478e5 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/'
}
},