feat: different run commands based on file types

This commit is contained in:
Akhilesh Rangani
2024-08-19 20:39:04 -04:00
committed by James Murdza
parent 5726cecb22
commit f1a65106b0
3 changed files with 14 additions and 6 deletions

View File

@ -12,7 +12,7 @@ export type User = {
export type Sandbox = {
id: string;
name: string;
type: "react" | "node";
type: string;
visibility: "public" | "private";
createdAt: Date;
userId: string;