From fc411e689b1d7d31c3f81a3b5f6118380425c5e3 Mon Sep 17 00:00:00 2001 From: Albert Portnoy Date: Fri, 16 Dec 2022 12:57:19 -0600 Subject: [PATCH] Update paths --- manifest.json | 2 +- scripts/build.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index da83539..e275d75 100644 --- a/manifest.json +++ b/manifest.json @@ -14,5 +14,5 @@ }, "license": "MIT", "type": "replugged-theme", - "main": "main.css" + "main": "src/main.css" } diff --git a/scripts/build.ts b/scripts/build.ts index 9af0ae4..5096b2e 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -6,8 +6,8 @@ import { join } from "path"; const manifest: Theme = _manifest; -const main = manifest.main || "main.css"; -const splash = manifest.splash || (existsSync("splash.css") ? "splash.css" : undefined); +const main = manifest.main || "src/main.css"; +const splash = manifest.splash || (existsSync("src/splash.css") ? "src/splash.css" : undefined); const mainBundler = new Parcel({ entries: main,