Closed tanakahisateru closed 7 years ago
Yii's asset/compress command cannot join JavaScripts they doesn't have semicolon at EOF correctly.
asset/compress
https://github.com/yiisoft/yii2/blob/1501c659aca7c50fa5e4f6fbe5ca549acc946c86/framework/console/controllers/AssetController.php#L571
So, I got these probrem with yii2-pjax 2.0.7:
)(jQuery) /*** END FILE: jquery.pjax.js ***/ /*** BEGIN FILE: yii.activeForm.js ***/ (function($){
Above would be compressed as:
)(jQuery)(function($){
I expect:
)(jQuery);(function($){
Merged. Thanks!
Yii's
asset/compress
command cannot join JavaScripts they doesn't have semicolon at EOF correctly.https://github.com/yiisoft/yii2/blob/1501c659aca7c50fa5e4f6fbe5ca549acc946c86/framework/console/controllers/AssetController.php#L571
So, I got these probrem with yii2-pjax 2.0.7:
Above would be compressed as:
I expect: