blob: e92804f945975b3e69e91d042b0f93f10f5f8982 (
plain) (
blame)
1
2
3
4
5
6
|
#!/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
|