Warning: Accessing non-existent property xxxx of module exports inside circular dependency


好像是stylus的问题,说node版本太高,要降低版本,于是我继续查找资料,在Github上找到了这个答案

node_modules\stylus\lib\nodes\index.js
在index.js文件中加上以下代码,成功解决~

exports.lineno = null;

exports.column = null;

exports.filename = null;

相关