Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
paren/scripts/fix_decl.sh

6 lines
105 B
Bash
Executable file

#!/bin/bash
for f in lib/*.d.mts;
do
sed -i 's/.mjs"/.js"/' "$f"
mv "$f" "${f//\.d\.mts/.d.ts}"
done