1

たとえば、スタイラス ファイル:

.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" 関数が定義されていません。エラーをスローしたいのですが、そうではありません。

4

0 に答える 0