diff --git a/build.ts b/build.ts index 69e5901..2a5077d 100644 --- a/build.ts +++ b/build.ts @@ -2,8 +2,8 @@ import { readFile } from "node:fs/promises"; import { parseArgs } from "node:util"; import { sys } from "typescript"; -import txtScriptHeader from "./src/header_script.txt" with { type: "text" }; -import txtMetaHeader from "./src/header_meta.txt" with { type: "text" }; +import txtScriptHeader from "./src/assets/header_script.txt" with { type: "text" }; +import txtMetaHeader from "./src/assets/header_meta.txt" with { type: "text" }; enum BuildTarget { ALL = 'all', diff --git a/src/header_meta.txt b/src/assets/header_meta.txt similarity index 100% rename from src/header_meta.txt rename to src/assets/header_meta.txt diff --git a/src/header_script.txt b/src/assets/header_script.txt similarity index 100% rename from src/header_script.txt rename to src/assets/header_script.txt