fix(release): more changes

This commit is contained in:
2025-07-12 16:57:49 -05:00
parent 3d5a8ee464
commit 1ed753506d

View File

@@ -9,10 +9,13 @@ import path from "path";
import { spawnSync } from "child_process";
import { fileURLToPath } from "url";
import fetch from "node-fetch";
import conventionalChangelog from "conventional-changelog";
import dotenv from "dotenv";
dotenv.config({ path: "./.env" });
import { createRequire } from "node:module";
const require = createRequire(import.meta.url);
const conventionalChangelog = require("conventional-changelog");
// Resolve the directory of the current script
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);