Yeoman结束时的自定义消息生成

时间:2014-05-20 14:09:33

标签: node.js yeoman yeoman-generator

完成所有操作后,我想向用户显示自定义消息。我试着写一个end函数,但是没有被调用。

我在Yeoman回购中did ask this,但他们说它更适合SO。

由于

1 个答案:

答案 0 :(得分:2)

你尝试过这样的事吗?

请记住在显示消息时使用this.log,以及如何使用优先级位于documentation

module.exports = yeoman.generators.Base.extend({
    initializing: function() {
        this.fs.copy(
            this.templatePath('blah.js'),
            this.destinationPath('blah.js')
        );
    },
    end: function() {
        this.log("All Done!");
    },
});