例如,手写笔文件:
.dd
fun()
height:10px
我使用nodejs来编译它
var stylus = require('stylus');
var s = stylus(stylusCode);
s.render(function(err, css) {
if (err) {
grunt.log.error(err);
grunt.fail.warn('Stylus failed to compile.');
callback(css, true);
} else {
callback(css, null);
}
});
在手写笔文件中,“fun”函数未定义,我希望它抛出错误,但不是。