我对yo angular和angularjs非常熟悉,但我会尝试使用开源bootstrap / angular / less模板,我想知道是否有正确的方法来做到这一点模板的构建步骤将由角度构建步骤执行
响应式角度引导程序模板:https://github.com/Ehesp/Responsive-Dashboard
答案 0 :(得分:1)
你可以在你的文件中使用_underscore模板调整你的生成器,所以它们是从一代构建的。
你可以使用
// template destination variables
this.template('yoTpls/_package.json', 'package.json', context);
成为上下文
var context = {
appName:this.appName
};
这就是
this.prompt(prompts, function (props) {
this.appName = props.appName;
done();
}.bind(this));