mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-12-22 08:46:27 +00:00
6 lines
118 B
Bash
Executable File
6 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Rename .js files to .cjs
|
|
rename -S .js .cjs dist/cjs/**/*
|
|
sed -i '' 's/\.js"/\.cjs"/g' dist/cjs/**/*.cjs
|