2
我正嘗試在我的構建中使用grunt-ng-annotate,並且我查看它們時似乎沒有註釋我的文件。ngAnnotate不會註釋並覆蓋它應該的文件
ngAnnotate: {
options: {
singleQuotes: true
},
dist: {
files: [{
expand: true,
cwd: '.tmp/concat/scripts',
src: '*.js',
dest: '.tmp/concat/scripts'
}]
}
},
但是,如果我補充一下:
ext: '.annotated.js',
然後我可以看到文件中的註釋。看來,不知何故,它只是不想覆蓋舊的文件,除非我給它們命名一些不同的東西。這裏的交易是什麼?