是否可以将“ index.coffee”文件连接为Yeoman生成器的入口点?
“ generator-generator”生成器创建一个“ index.js”文件。用'index.coffee'替换它会将生成器隐藏在Yeoman中。
我查看了文档,但找不到任何提及。
https://github.com/yeoman/yeoman/wiki/Generators
我发现Yeoman的一个非常老的叉子似乎已经计划好了:
https://github.com/mklabs/yeoman/wiki/generators
目前,我已经设置了一个观察器,将我的CoffeeScript文件编译成JavaScript。
最佳答案
您希望您的index.js
文件包含以下内容:
require('coffee-script');
module.exports = require('./index.coffee');
然后将实际的生成器代码放在
index.coffee
中。我在这里https://gist.github.com/tuxracer/6332601从generator-generator移植了示例关于coffeescript - Yeoman Generator CoffeeScript入口点,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17728360/