1 Star 0 Fork 0

Admin/malihu-custom-scrollbar-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# prerequisite: https://www.npmjs.com/package/uglify-js
echo "Building js file for TSM out of three parts."
mousewheelFile="./js/minified/jquery.mousewheel.min.js"
echo "/* == jquery mousewheel plugin == Version: 3.1.13, License: MIT License (MIT) */ " > $mousewheelFile
uglifyjs --compress --mangle -- ./js/uncompressed/jquery.mousewheel.js >> $mousewheelFile
mcsFile="./js/minified/jquery.mCustomScrollbar.min.js"
echo "/* == malihu jquery custom scrollbar plugin == Version: 3.1.5.TSM, License: MIT License (MIT) */" > $mcsFile
uglifyjs --compress --mangle -- ./jquery.mCustomScrollbar.js >> $mcsFile
customScriptFile="./tsm.js"
resultFile="./jquery.mCustomScrollbar.concat.min.js"
echo "/* Built from source code https://github.com/capslocky/malihu-custom-scrollbar-plugin */" > $resultFile
echo "/* Built date: $(date) */" >> $resultFile
echo >> $resultFile
cat $mousewheelFile >> $resultFile
echo >> $resultFile
echo >> $resultFile
cat $mcsFile >> $resultFile
echo >> $resultFile
echo >> $resultFile
cat $customScriptFile >> $resultFile
echo "Result file is $resultFile"
echo "Done."
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bjfu_lhy_lanhy2000/malihu-custom-scrollbar-plugin.git
git@gitee.com:bjfu_lhy_lanhy2000/malihu-custom-scrollbar-plugin.git
bjfu_lhy_lanhy2000
malihu-custom-scrollbar-plugin
malihu-custom-scrollbar-plugin
master

搜索帮助