From 09f9035da74a84c192435125bffde640bd7baf99 Mon Sep 17 00:00:00 2001 From: Bobby Date: Wed, 24 Sep 2025 21:50:38 +0530 Subject: update bundle scripts --- bundle.ts | 10 +++------- package.json | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/bundle.ts b/bundle.ts index 40471e8..c7d4e9d 100644 --- a/bundle.ts +++ b/bundle.ts @@ -1,10 +1,6 @@ -import fs from "fs"; -import path from "path"; -import { fileURLToPath } from "url"; -import AdmZip from "adm-zip"; - -const __filename = fileURLToPath(import.meta.url); -const __dirname = path.dirname(__filename); +const fs = require("fs"); +const path = require("path"); +const AdmZip = require("adm-zip"); const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, "package.json"), "utf-8")); const version: string = pkg.version || "0.0.0"; diff --git a/package.json b/package.json index 12b68b2..5ac057e 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "license": "MIT", "author": "Bobby ", "scripts": { - "clean": "rm -rf build", + "clean": "rm -rf build && rm -rf release", "build:ts": "tsup src/background.ts src/popup/popup.ts src/options/options.ts --format cjs --out-dir build --splitting false --sourcemap", "build:static": "cp src/manifest.json build/ && cp -r src/popup build/ && cp -r src/options build/ && cp -r icons build/ && cp node_modules/webextension-polyfill/dist/browser-polyfill.js build/", "build": "npm run clean && npm run build:ts && npm run build:static", -- cgit v1.2.3