我需要从一个库中压缩很多文件。但必须首先加载其中一个。所以我需要做这样的事情:
{% javascripts
'@MyBundleBundle/Resources/public/js/foo-file.js'
'@MyBundleBundle/Resources/public/js/(everything except foo-file).js'
output='js/all.js'
%}
有什么想法吗?
答案 0 :(得分:2)
尝试以下方法:
{% javascripts
'@MyBundleBundle/Resources/public/js/foo-file.js'
'@MyBundleBundle/Resources/public/js/*'
output='js/all.js'
%}
它会将@MyBundleBundle/Resources/public/js/
目录中的每个文件合并为foo-file.js
第一个文件。