如何使用 grunt-contrib-stylus 包含 Stylus 库?
我想将 Jeet & Rupture 添加到我的触控笔设置中。
我已经运行 npm install --save-dev rupture
&npm install --save-dev jeet
但我不确定如何让手写笔设置使用它们,这就是我所拥有的:
// Compiles Stylus to CSS
stylus: {
server: {
options: {
paths: [
'<%= yeoman.client %>/bower_components',
'<%= yeoman.client %>/app',
'<%= yeoman.client %>/components',
'<%= yeoman.client %>/assets'
],
"include css": true
},
files: {
'.tmp/app/app.css' : '<%= yeoman.client %>/app/app.styl'
}
}
},
这就是我对 Jeet 的称呼。
@import 'jeet';
但我明白了error failed to locate @import file jeet.styl
>> 6| @import 'jeet';
>> --------------^