From 68a1335da8c8ccecfeb05ef50b66bcda4ec6c63e Mon Sep 17 00:00:00 2001 From: CamBurr Date: Fri, 18 Aug 2023 17:38:47 -0600 Subject: [PATCH] changed build settings --- packageBuild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packageBuild.ts b/packageBuild.ts index d76ddd8..8ccd857 100644 --- a/packageBuild.ts +++ b/packageBuild.ts @@ -16,7 +16,7 @@ const minimatch = require('minimatch'); const { author, name:packageName, version } = require("./package.json"); // Generate the name of the package, stripping out all non-alphanumeric characters in the 'author' and 'name'. -const modName = `${author.replace(/[^a-z0-9]/gi, "")}-${packageName.replace(/[^a-z0-9]/gi, "")}-${version}`; +const modName = `${author.replace(/[^a-z0-9]/gi, "")}-${packageName.replace(/[^a-z0-9]/gi, "")}`; console.log(`Generated package name: ${modName}`); // Delete the old build directory and compressed package file.