我是 coffeescript 的新手,我只是玩这个命令来加入我的咖啡文件:
coffee.cmd -cj scriptall.js *.coffee
结果
File not found: C:\xampp\htdocs\foo\js\*.coffee
这很奇怪,因为我在 C:\ xampp \ htdocs \ foo \ js \上有 test1.coffee,test2.coffee 和 test3.coffee 即可。 我必须像这样明确地设置目标文件才能使它工作:
coffee.cmd -cj scriptall.js test1.coffee test2.coffee test3.coffee
任何人都知道如何解决这个问题?
提前致谢!