From f479ed07c8211ab581edf5b5874d191a5fc0827f Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 15 Aug 2016 18:26:04 +0300 Subject: [PATCH] added more extensions to bootstrap... Signed-off-by: Alex A. Naanou --- bootstrap/System/{style.tpl => style.css} | 0 make_bootstrap.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename bootstrap/System/{style.tpl => style.css} (100%) diff --git a/bootstrap/System/style.tpl b/bootstrap/System/style.css similarity index 100% rename from bootstrap/System/style.tpl rename to bootstrap/System/style.css diff --git a/make_bootstrap.js b/make_bootstrap.js index 66839a0..eb57bcb 100644 --- a/make_bootstrap.js +++ b/make_bootstrap.js @@ -13,11 +13,11 @@ var glob = require('glob') var bootstrap = {} // XXX add support for json... -glob('bootstrap/**/*.@(tpl|md)') +glob('bootstrap/**/*.@(tpl|md|css|html)') .on('match', function(path){ var p = path .replace('bootstrap/', '') - .replace(/.tpl|.md/, '') + .replace(/.(tpl|md|css|html)/, '') if(p)