为了能够通过gulp-mocha测试app.js
,我将最后3行添加到文件中:
function foo(){
return 'foobar';
}
//For the sake of testing
if(typeof exports !== 'undefined'){
exports.foo = foo;
}
我不希望此代码出现在浏览器中,它仅用于测试目的。
在将文件导出到build
目录时,有没有办法用gulp将其删除?类似于gulp-html-replace
但是对于javascript?