feat: loading files from manifest

This commit is contained in:
2024-01-28 01:11:56 +01:00
parent 55e28c1edf
commit 1113bd01f2
8 changed files with 190 additions and 39 deletions

6
src/utils/types.ts Normal file
View File

@@ -0,0 +1,6 @@
export type Manifest = {
projects: Array<{
name: string;
files: Array<string>;
}>;
};