diff options
author | 2025-02-24 06:11:05 +0100 | |
---|---|---|
committer | 2025-02-24 06:11:05 +0100 | |
commit | 38945ae32f56ca47731d1fa8ae9c13caff73ffef (patch) | |
tree | 56c798b27e3384be27e869b145a45d2af2d2d0e0 /contrib/strip-srcmap.sh | |
parent | e6583ddd27cbf4c10dc87fda6151e1bca3926086 (diff) | |
download | httptool-0.0.1.tar.gz httptool-0.0.1.tar.bz2 httptool-0.0.1.tar.lz httptool-0.0.1.zip |
feat: nostrip
Diffstat (limited to 'contrib/strip-srcmap.sh')
-rwxr-xr-x | contrib/strip-srcmap.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/strip-srcmap.sh b/contrib/strip-srcmap.sh deleted file mode 100755 index e92804f..0000000 --- a/contrib/strip-srcmap.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env zsh -set -e -# some source maps are >20MB, we can't keep that going. -for f in $(find build/uwu -name '*.js' -or -name '*.mjs'); do - grep -v sourceMappingURL= "$f" > /tmp/a && mv /tmp/a "$f" -done |