aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/strip-srcmap.sh
blob: a87ab03a35a46962e3d6f234a8aaba93e85a34a0 (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env zsh
set -eax
# 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