#!/bin/bash

find . |grep -E "\\.js$" | sed -E 's/^(.*)\.js$/\1/g' | xargs -I {} mv "{}.js" "{}.mjs"
