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

[27/64] [abbrv] fauxton commit: updated refs/heads/secondary-indexes to ef01e24

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/aa287f9e
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/aa287f9e
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/aa287f9e

Branch: refs/heads/secondary-indexes
Commit: aa287f9e9a59c287529cb32a2b3d2c3e7564c227
Parents: 98f84cf
Author: Garren Smith <ga...@gmail.com>
Authored: Mon Jun 30 11:32:37 2014 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Tue Jul 22 16:49:10 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/aa287f9e/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:{