-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Causes lots of warnings with stylus option warn
on
#81
Comments
hmm weird.. I wonder if it's being imported several times or something. are you doing |
we kinda need a |
In app.js: var compile = function(str, path) {
return stylus(str)
.define('url', stylus.url({ paths : [__dirname + "/public"], limit : 10000 }))
.set('filename', path)
.set('warn', true)
.use(nib());
}; Then in the stylesheet: @import 'nib' If I take out either, nib no longer works. I've also checked this on another project and has the same issue. |
weird! I'll try the same on my project and check it out |
Any word on this? |
I'm also getting debug warnings for Express 3 and:
|
Having just added nib to a project where the stylus
warn
option was set, I found the following output.Turns out in
lib/nib/vendor.styl
border-image
is actually declared twice, but I can't see why all of the other warnings should be fired.The text was updated successfully, but these errors were encountered: