我意识到这似乎是一件奇怪的事情,但我很想看看为了我的理智输出了哪些路径。
// configurable paths
var yeomanConfig = {
docroot: 'docroot/',
css: this.docroot+'css',
fonts: this.docroot+'fonts',
sass: this.docroot+'sass',
img: this.docroot+'img',
js: this.docroot+'js',
app: 'app',
dist: '<%= yeoman.docroot %>/dist'
};
例如上面我想看看JS认为这真的是什么。或者另一个例子:
jst: {
files: [
'<%= yeoman.js %>/templates/*.ejs'
],
tasks: ['jst']
}
那么你能看到包含并执行变量的 grunt 文件的最终版本吗?