Update paths

This commit is contained in:
Albert Portnoy 2022-12-16 12:57:19 -06:00
parent fa0fd4856b
commit fc411e689b
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -14,5 +14,5 @@
},
"license": "MIT",
"type": "replugged-theme",
"main": "main.css"
"main": "src/main.css"
}

View file

@ -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,