chore: move sandbox to apps/ (#1171)

This commit is contained in:
rahim
2026-04-01 12:42:06 -07:00
committed by GitHub
parent 2fff955ab6
commit 6c5f8c0eda
77 changed files with 94 additions and 84 deletions
+12
View File
@@ -0,0 +1,12 @@
import { mirrorTemplatesToSrc, removeGeneratedSrcFiles } from './shared.js';
const created = await mirrorTemplatesToSrc();
const removed = await removeGeneratedSrcFiles();
for (const file of created) {
console.log(`Created ${file}`);
}
for (const file of removed) {
console.log(`Removed generated ${file}`);
}