refactor(share): removing problematic build step

This commit is contained in:
Elian Doran 2025-06-10 21:09:24 +03:00
parent 83c136174e
commit b2b6654846
No known key found for this signature in database

View File

@ -15,7 +15,7 @@ const rootDir = path.dirname(process.env.npm_package_json!);
dotenv.config(); dotenv.config();
const modules = ["scripts", "styles", "templates"]; const modules = ["scripts", "styles"];
const entryPoints: {in: string, out: string}[] = []; const entryPoints: {in: string, out: string}[] = [];
function makeEntry(mod: string) { function makeEntry(mod: string) {
@ -27,9 +27,6 @@ function makeEntry(mod: string) {
case "scripts": case "scripts":
entrypoint = "index.ts"; entrypoint = "index.ts";
break; break;
case "templates":
entrypoint = "page.ejs";
break;
default: default:
throw new Error(`Unknown module type ${mod}.`); throw new Error(`Unknown module type ${mod}.`);
} }