0
如何在Yeoman
中使用placeholder
作爲js
文件?我試圖將它添加在JavaScript文件中的Yeoman佔位符
writing: function() {
this.fs.copy(
this.templatePath('portanova_template'),
this.destinationPath(this.projectName)
);
if(this.answer) {
this.fs.copy(
this.templatePath('externalTemplate'),
this.destinationPath(this.projectName+'/app'),
{
title: this.projectName
}
);
}
},
和JS文件只是添加
"<%= title %>"
需要的地方。但它似乎並沒有工作.. 任何想法?