fis3 打包问题
使用fis3打包, 打包顺序问题,目的是使打包出来
framework.js
里面顺序与配置顺序一样
设置 packOrder
声明依赖
//声明依赖
var app = angular.module('test',[
"ngTouch",
"ui.router"
]); //要不要这个依赖 打包结果一样
......
fis.match(createGlobPatternSet([
'framework/js/bower_components/angular/angular.js',
'framework/js/bower_components/angular-ui-router/release/angular-ui-router.js'
]), {
packTo: 'framework/framework.js'
})
.match(createGlobPatternSet([
'framework/app.js',
'framework/js/services/**.js',
'framework/js/directive/**.js',
'framework/js/filters/**.js',
'framework/js/providers/**.js'
]), {
packTo: 'framework/component.js'
});
function createGlobPatternSet(arr) {
return "{" + arr.join(',') + "}";
}
.match(createGlobPatternSet([
'framework/js/bower_components/angular/angular.js',
'framework/js/bower_components/angular-touch/angular-touch.js',
'framework/js/bower_components/angular-ui-router/release/angular-ui-router.js'
]), {
packTo: 'framework/framework.js'
})
.match('framework/js/bower_components/angular/angular.js', {
packOrder: 100
}) //并没有影响
.match('::package', {
packager: fis.plugin('map', {
'framework/framework.js': [
'framework/js/bower_components/angular/angular.js',
'framework/js/bower_components/angular-touch/angular-touch.js',
'framework/js/bower_components/angular-ui-router/release/angular-ui-router.js'
]
})
})
// 自动替换合并文件的插件
.match('::packager', {
postpackager: fis.plugin('loader', {
allInOne: true
})
}); //依旧没有用
framework.js 顺序
;/*!/framework/js/bower_components/angular-touch/angular-touch.js*/
;/*!/framework/js/bower_components/angular-ui-router/release/angular-ui-router.js*/
;/*!/framework/js/bower_components/angular/angular.js*/
......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其实packOrder应该是这么用的
比如说我要合并one.js和two.js到all.js
关于评论里说到多个文件的问题:我之前尝试过在项目从fis到fis3迁移时搞的配置