字符集utf8
2015-06-02 18:44
windows 下, wr 'lessc --source-map lessname.less cssname.css' lessname.less ,当文件发生变化时。node直接报错。
PS:无论是window的cmd或者,git bash 都如此。
您好,可能是 node 版本导致的,可以尝试使用 nvm 工具修改 node 版本。谢谢!
保存时报错解决办法:
wr工具此时执行的是spawn,需要执行的是exec,正确的代码为:wr --exec "lessc --source-map duang.less duang.css" duang.less。详解如下:
exec:
the command will not be parsed, as will be run as given
should handle i/o redirection shell operators
stdout and stderr output will be buffered until the command is complete
spawn:
the command will be parsed into space separated tokens, probably misinterpreting any quotes you have in your command
will not handle i/o redirection shell operators
stdout and stderr output will not be buffered
详解来源:https://www.npmjs.com/package/wr
同上,求解决啊,老师
同求,最新的node.js 版本是提示这个
SVG实现Tooltip气泡效果
27800 学习 · 44 问题
相似问题