mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-12-22 09:06:27 +00:00
6 lines
117 B
Bash
Executable File
6 lines
117 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/index.cjs
|