Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit b2b6654

Browse files
committed
refactor(share): removing problematic build step
1 parent 83c1361 commit b2b6654

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/share-theme/scripts/build.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const rootDir = path.dirname(process.env.npm_package_json!);
1515

1616
dotenv.config();
1717

18-
const modules = ["scripts", "styles", "templates"];
18+
const modules = ["scripts", "styles"];
1919
const entryPoints: {in: string, out: string}[] = [];
2020

2121
function makeEntry(mod: string) {
@@ -27,9 +27,6 @@ function makeEntry(mod: string) {
2727
case "scripts":
2828
entrypoint = "index.ts";
2929
break;
30-
case "templates":
31-
entrypoint = "page.ejs";
32-
break;
3330
default:
3431
throw new Error(`Unknown module type ${mod}.`);
3532
}

0 commit comments

Comments
 (0)