From 6aa24ff9767ae718f0f8d1bd1d7c02f2d5920da3 Mon Sep 17 00:00:00 2001 From: Aria Stewart Date: Sun, 21 Oct 2012 02:13:58 -0300 Subject: [PATCH] Fix automatic include path include() sets the include path, not imports a file. --- js/bootstrap.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/bootstrap.js b/js/bootstrap.js index c587aa10..3f0e173e 100644 --- a/js/bootstrap.js +++ b/js/bootstrap.js @@ -1,4 +1,3 @@ - /*! * bootstrap-stylus */ @@ -12,7 +11,7 @@ var path = require('path'); module.exports = function(){ return function(style){ - style.include(__dirname + '/../styl/bootstrap.styl'); + style.include(__dirname + '/../styl'); style.use(nib()); } };