想实现这样的功能,
(function($, d, w) {
var container = {
....
};
})(jQuery, document, window);
其中container内的行数非常多,包含各种各样的属性和方法。
并且有非常多类似container的对象
这个js文件经常超过1000行, 开发起来非常难过,老是要上下滚动找来找去。如果变成这样:
(function($, d, w) {
$.include(file1)
$.include(file2)
...
})(jQuery, document, window);
就会更加方便。每次修改后重新合并一下, 类似css的预处理器sass
请问有这样的工具吗?
先感谢了。