我需要重构一堆像这样调用的文件
define(['module1','module2','module3' etc...], function(a, b, c etc...) {
//bunch of code
return Something;
});
到
var a = require('module1');
var b = require('module2');
var c = require('module3');
//bunch of code
module.exports = Something;
看起来像一个非常简单的任务,99%的代码遵循这种模式,但我不能使用正则表达式,因为我无法平衡括号。
我已经找到了文件遍历,在一项艰巨的任务中,我只需要转换文件并将其写回来。
grunt.registerTask('refactor', '', function() {
//traverse all files
grunt.file.recurse('./src/js/views', function callback(abspath, rootdir, subdir, filename) {
var c;
//only care about .js files
if(filename.match(/\.js$/)){
console.log(subdir, filename);
c = grunt.file.read(abspath); //read file
//modify it
c = c + "\n/* Comment appended! */";
grunt.file.write(abspath, c); //write it back
}
});
grunt.log.write("DONE").ok();
});
这是一次性的工作,所以我正在寻找一个快速解决问题的解决方案,无论如何我将不得不手动检查所有文件,我只想节省一些时间。
答案 0 :(得分:1)