From 824dbb6c059e2aa4a6d59ac2cdba3a07cc34aed4 Mon Sep 17 00:00:00 2001 From: Palmer Date: Tue, 16 Dec 2014 14:03:02 -0500 Subject: [PATCH] docs(app): adds stylesheets to deployment files --- docs/config/services/deployments/debug.js | 3 ++- docs/config/services/deployments/default.js | 2 +- docs/config/services/deployments/jquery.js | 3 ++- docs/config/services/deployments/production.js | 5 +++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/config/services/deployments/debug.js b/docs/config/services/deployments/debug.js index 90e2ef34..afb4d7ec 100644 --- a/docs/config/services/deployments/debug.js +++ b/docs/config/services/deployments/debug.js @@ -32,7 +32,8 @@ module.exports = function debugDeployment(getComponentPath) { 'css/prettify-theme.css', 'css/docs.css', 'css/animations.css', - 'font-awesome/css/font-awesome.css' + 'font-awesome/css/font-awesome.css', + '//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700' ] }; }; diff --git a/docs/config/services/deployments/default.js b/docs/config/services/deployments/default.js index e5c5fa2a..2a7d07b6 100644 --- a/docs/config/services/deployments/default.js +++ b/docs/config/services/deployments/default.js @@ -33,7 +33,7 @@ module.exports = function defaultDeployment(getComponentPath) { 'css/docs.css', 'css/animations.css', 'font-awesome/css/font-awesome.css', - 'http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700' + '//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700' ] }; }; diff --git a/docs/config/services/deployments/jquery.js b/docs/config/services/deployments/jquery.js index 37a36d78..b228dbe0 100644 --- a/docs/config/services/deployments/jquery.js +++ b/docs/config/services/deployments/jquery.js @@ -36,7 +36,8 @@ module.exports = function jqueryDeployment(getComponentPath) { 'css/prettify-theme.css', 'css/docs.css', 'css/animations.css', - 'font-awesome/css/font-awesome.css' + 'font-awesome/css/font-awesome.css', + '//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700' ] }; }; diff --git a/docs/config/services/deployments/production.js b/docs/config/services/deployments/production.js index bc029fa9..601d3b9f 100644 --- a/docs/config/services/deployments/production.js +++ b/docs/config/services/deployments/production.js @@ -32,7 +32,8 @@ module.exports = function productionDeployment(getVersion) { stylesheets: [ 'css/prettify-theme.css', 'css/docs.css', - 'css/animations.css' + 'css/animations.css', + '//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700' ] }; -}; \ No newline at end of file +};