Skip to content

Commit

Permalink
Fix .gitattributes, .gitignore, .github/ not being generated
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n committed Jan 1, 2025
1 parent d62957e commit f342969
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/generator/io-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ async function readFolder(folder: string): Promise<Record<string, Uint8Array>> {
absolute: false,
cwd: folder,
nodir: true,
dot: true,
});

return Object.fromEntries(
Expand Down
2 changes: 2 additions & 0 deletions src/generator/io-vite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const RAW_FILES = import.meta.glob("@assets/template/raw/**/*", {
eager: true,
query: "?buffer",
import: "default",
exhaustive: true,
}) as Record<string, Uint8Array>;

/* INTERPOLATED FILES - included as is after string replacement */
Expand All @@ -14,6 +15,7 @@ const INTERPOLATED_FILES = import.meta.glob(
eager: true,
query: "?buffer",
import: "default",
exhaustive: true,
},
) as Record<string, Uint8Array>;

Expand Down

0 comments on commit f342969

Please sign in to comment.