Merge pull request #1 from LiamTheNinja5/patch-1

Changed so the file will be auto found by template managers
This commit is contained in:
0xa663
2024-05-08 08:03:14 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ async function main(dev) {
const toAssetsDir = path.join(buildVersionDir, "assets"); const toAssetsDir = path.join(buildVersionDir, "assets");
const manifestTemplateLocation = path.join(process.cwd(), "manifest.template.json"); const manifestTemplateLocation = path.join(process.cwd(), "manifest.template.json");
const userScriptTemplateLocation = path.join(process.cwd(), "user-script.template.js"); const userScriptTemplateLocation = path.join(process.cwd(), "user-script.template.js");
const userScriptOutput = path.join(distDir, "user-script.js"); const userScriptOutput = path.join(distDir, "user-script.user.js");
const manifestLocation = path.join(buildVersionDir, "manifest.json"); const manifestLocation = path.join(buildVersionDir, "manifest.json");
const scriptInput = path.join(process.cwd(), "src", "index.ts"); const scriptInput = path.join(process.cwd(), "src", "index.ts");
View File