diff --git a/build.ts b/build.ts index 963639d..c819b87 100644 --- a/build.ts +++ b/build.ts @@ -139,7 +139,7 @@ const build = async (target: BuildTarget, version: string, variant: BuildVariant await Bun.write(path, scriptHeader + result); // Create meta file (don't build if it's beta version) - if (!version.includes('beta')) { + if (!version.includes('beta') && variant === 'full') { await Bun.write(outDir + '/' + outputMetaName, txtMetaHeader.replace('[[VERSION]]', version)); } diff --git a/bun.lockb b/bun.lockb index 66ba767..aa5f64e 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/dist/better-xcloud.lite.meta.js b/dist/better-xcloud.lite.meta.js deleted file mode 100644 index 44148de..0000000 --- a/dist/better-xcloud.lite.meta.js +++ /dev/null @@ -1,5 +0,0 @@ -// ==UserScript== -// @name Better xCloud -// @namespace https://github.com/redphx -// @version 5.8.0 -// ==/UserScript== diff --git a/package.json b/package.json index c34dc6b..946c735 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@types/bun": "^1.1.10", - "@types/node": "^22.7.4", + "@types/node": "^22.7.5", "@types/stylus": "^0.48.43", "eslint": "^9.12.0", "eslint-plugin-compat": "^6.0.1",