我正在寻找一种使用gulp从javascript文件中删除所有评论的方法。
例如,我有以下代码:
/***
* Comment 1 - This is my javascript header
* @desc comment header to be removed
* @params req, res
*/
(function() {
var helloworld = 'Hello World'; // Comment 2 - this is variable
/* Comment 3 - this is the printing */
console.log(helloworld);
})()
我的预期结果是:
(function() {
var helloworld = 'Hello World';
console.log(helloworld);
})();
答案 0 :(得分:11)
如果您只想删除评论,可以使用gulp-strip-comments
var gulp = require('gulp');
var strip = require('gulp-strip-comments');
gulp.task('default', function () {
return gulp.src('template.js')
.pipe(strip())
.pipe(gulp.dest('dist'));
});
如果您还要缩小文件,请使用uglify