All Questions
5 questions
1
vote
1
answer
241
views
Stylus jeet doesn't work anymore
In one single day i got this error. It doesn't work anymore for me.
gulpfile.js
var gulp = require('gulp'),
stylus = require('gulp-stylus'),
jeet = require('jeet');
gulp.task('default', ...
0
votes
1
answer
90
views
Stylus not parsing some directives
Using the Stylus / Jeet's column() or col() mixins, some are not compiling, but showing up literally in my generated css files. This should not be happening.
Test.styl
@import 'jeet'
#main
...
0
votes
1
answer
548
views
Node stylus import structure - bootstrap and jeet
I'm new to css compiling. I currently have a node.js app using express and precompiled bootstrap 3 files, and I'm diving into Stylus to make this better. I want to compile Stylus and import bootstrap ...
1
vote
1
answer
243
views
How to use Jeet in Express?
How do you use Jeet in Express?
This is part of my app.js file:
app.set('views', __dirname + '/views')
app.set('view engine', 'jade')
app.use(stylus.middleware(
{ src: __dirname + '/public'
, ...
2
votes
2
answers
1k
views
How to a include Stylus Libraries with grunt-contrib-stylus?
How to a include Stylus Libraries with grunt-contrib-stylus?
I would like to add Jeet & Rupture to my stylus setup.
I have run npm install --save-dev rupture & npm install --save-dev jeet
...