You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2014/07/21 09:03:28 UTC

[44/44] fauxton commit: updated refs/heads/Update-Sidebar to a41bdb0

Copy fonts across on deploy


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/a41bdb01
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/a41bdb01
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/a41bdb01

Branch: refs/heads/Update-Sidebar
Commit: a41bdb015c13d832dc4db6c1a2f87de5f246133b
Parents: d6421cb
Author: Garren Smith <ga...@gmail.com>
Authored: Mon Jun 30 11:32:37 2014 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Mon Jul 21 09:02:18 2014 +0200

----------------------------------------------------------------------
 Gruntfile.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/a41bdb01/Gruntfile.js
----------------------------------------------------------------------
diff --git a/Gruntfile.js b/Gruntfile.js
index 0127cc9..dbcdd2c 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -64,7 +64,7 @@ module.exports = function(grunt) {
           "dist/debug/css/fauxton.css": "assets/less/fauxton.less"
         }
       },
-      fonts: ["assets/fonts/*"],
+      fonts: ["assets/fonts/*.eot", "assets/fonts/*.svg", "assets/fonts/*.ttf", "assets/fonts/*.woff",],
       img: ["assets/img/**"],
       // used in concat:index_css to keep file ordering intact
       // fauxton.css should load first
@@ -349,7 +349,8 @@ module.exports = function(grunt) {
       dist:{
         files:[
           {src: "dist/debug/index.html", dest: "dist/release/index.html"},
-          {src: assets.img, dest: "dist/release/img/", flatten: true, expand: true}
+          {src: assets.img, dest: "dist/release/img/", flatten: true, expand: true},
+          {src: assets.fonts, dest: "dist/release/fonts/", flatten: true, expand: true}
         ]
       },
       debug:{