我有以下文件数组
var jqueryFiles=[
'bower_components/jquery/dist/jquery.min.js',
'bower_components/jquery-slimscroll/jquery.slimscroll.min.js',
'bower_components/jquery-ui/jquery-ui.min.js'
]
我想要实现的是将它们移动到文件夹web/assets/vendor
中,但是在js之前它们的名称没有.min.
。
我想将'bower_components/jquery-slimscroll/jquery.slimscroll.min.js
移到web/assets/vendor/jquery.slimscroll.js
文件
有什么想法吗?