使用
the
原文链接:https://www.f2er.com/angularjs/144476.htmlgulp-wrap
plugin与一个简单的模板:
var wrap = require("gulp-wrap"); gulp.src("./src/*.js") .pipe(wrap('(function(){\n"use strict";\n<%= contents %>\n})();')) .pipe(gulp.dest("./dist"));
(function(){ "use strict"; //contents here… })();
您还可以将模板存储在文件系统上,而不是将其嵌入到gulpfile中,并使用wrap({src:’path / to / template’})调用gulp-wrap