我已经设置了一个版本号2.7.1
的hubot服务器。这是我package.json
的依赖关系部分:
"dependencies": {
"hubot": ">= 2.6.0 < 3.0.0",
"hubot-scripts": ">= 2.5.0 < 3.0.0",
"hubot-hipchat": "~2.6.4"
},
启动时,它会加载scripts/
中的脚本,但似乎忽略了我放入hubot-scripts.json
的集合。这是该文件的第一部分:
["shipit.coffee", "sudo", "9gag", "abstract"
使用详细的启动日志,您可以看到包含shipit.coffee(默认值之一),但其余的都不是:
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Loading hubot-scripts from /path/node_modules/hubot-scripts/src/scripts
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Parsing help for /path/node_modules/hubot-scripts/src/scripts/shipit.coffee
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Loading external-scripts from npm packages
node_modules/hubot-scripts/src/scripts/
目录中有大约460个文件,它包含我hubot-scripts.json
文件中给出的四个文件。我只能假设它不是在阅读那个文件......或者其他东西。
This documentation diff让我觉得我没有错过任何东西,there's an old issue也是在很久以前修补过的。
答案 0 :(得分:7)
尝试将.coffee
扩展名添加到hubot-scripts.json
中的所有脚本名称:
["shipit.coffee", "sudo.coffee", "9gag.coffee", "abstract.coffee"