我意识到这可能看起来像是一件奇怪的事情,但是我很想知道究竟哪条路径正在为我的理智输出。
// 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文件的最终版本吗?
答案 0 :(得分:0)
使用详细选项(grunt --verbose
)运行任务将记录扩展输出(通常),包括要操作的文件。
grunt api docs指定grunt.verbose.write的行为。