grunt-ng-注释所有 angularjs 个文件
grunt-ng-annotate all angularjs files
我想 运行 通过 g运行t 在我所有项目的 angular 文件上进行 ng-annotate。
找不到此选项。
我只有通过指定文件名进行注释的选项。
ngAnnotate: {
dist: {
files: {
'output_file_name.js': ['input_file_name'],
},
}
}
我需要更通用的东西 运行 在特定目录上递归。
您可以使用其他配置遍历文件夹并对每个文件进行注释,这些文件将输出到 *.annotated.js
文件中。
ngAnnotate: {
dist: {
files: [{
expand: true,
src: ['**/*.js', '!**/*.annotated.js'],
ext: '.annotated.js',
extDot: 'last'
}],
}
}
我想 运行 通过 g运行t 在我所有项目的 angular 文件上进行 ng-annotate。
找不到此选项。
我只有通过指定文件名进行注释的选项。
ngAnnotate: {
dist: {
files: {
'output_file_name.js': ['input_file_name'],
},
}
}
我需要更通用的东西 运行 在特定目录上递归。
您可以使用其他配置遍历文件夹并对每个文件进行注释,这些文件将输出到 *.annotated.js
文件中。
ngAnnotate: {
dist: {
files: [{
expand: true,
src: ['**/*.js', '!**/*.annotated.js'],
ext: '.annotated.js',
extDot: 'last'
}],
}
}