move useful scripts to script folder

This commit is contained in:
Dax Raad
2026-04-16 10:09:14 -04:00
parent 7341718f92
commit 6ce481e95b
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bun
import path from "path"
const toDynamicallyImport = path.join(process.cwd(), process.argv[2])
await import(toDynamicallyImport)
console.log(performance.now())