镜像自地址
https://git.coolaj86.com/coolaj86/hexdump.js.git
已同步 2025-07-03 21:36:32 +00:00
17 行
409 B
Bash
17 行
409 B
Bash
#!/bin/bash
|
|
|
|
# TODO convert to JS
|
|
cat hexdump.js > all.tmp.js
|
|
sed -i '' '/use strict/d' all.tmp.js
|
|
sed -i '' '/require/d' all.tmp.js
|
|
sed -i '' '/exports/d' all.tmp.js
|
|
echo ';(function () {' > all.js
|
|
echo "'use strict';" >> all.js
|
|
cat all.tmp.js >> all.js
|
|
rm all.tmp.js
|
|
echo "window.hexdump = hexdump;" >> all.js
|
|
echo '}());' >> all.js
|
|
|
|
mv all.js dist/hexdump.js
|
|
uglifyjs dist/hexdump.js > dist/hexdump.min.js
|