Open guohuihot opened 8 years ago
建议多看看文档和例子
$.seajsCombo({
plugins : [{
ext : [ '.tpl' ],
use : [{
plugin : $.uglify,
param : uglifyConfig
}]
}]
})
您好,我想把加载的文件压缩,不知道这样写对不?
应该像这样:
gulp.task( 'combo', function () {
return gulp.src( 'hello.js' )
.pipe( seajsCombo() )
.pipe( uglify() )
.pipe( gulp.dest('dist') )
});
像这种插件加载不进来