aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-02-24 06:11:05 +0100
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-02-24 06:11:05 +0100
commit38945ae32f56ca47731d1fa8ae9c13caff73ffef (patch)
tree56c798b27e3384be27e869b145a45d2af2d2d0e0
parente6583ddd27cbf4c10dc87fda6151e1bca3926086 (diff)
downloadhttptool-38945ae32f56ca47731d1fa8ae9c13caff73ffef.tar.gz
httptool-38945ae32f56ca47731d1fa8ae9c13caff73ffef.tar.bz2
httptool-38945ae32f56ca47731d1fa8ae9c13caff73ffef.tar.lz
httptool-38945ae32f56ca47731d1fa8ae9c13caff73ffef.zip

feat: nostrip

v0.0.1
-rw-r--r--Makefile1
-rwxr-xr-xcontrib/strip-srcmap.sh6
2 files changed, 0 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index ae92de1..357a903 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,6 @@ mozaddons:
$(MAKE) bootstrap
pnpm i
$(MAKE) build-reproducible
- contrib/strip-srcmap.sh
$(MAKE) pack
clean:
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